# app.thesocialwire.operations.acknowledgeAlert

> Published by [samclemente.me](https://lexicon.garden/identity/did:plc:qy5pluw2bsuq2x6albsgkvx3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:qy5pluw2bsuq2x6albsgkvx3/app.thesocialwire.operations.acknowledgeAlert)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qy5pluw2bsuq2x6albsgkvx3/app.thesocialwire.operations.acknowledgeAlert/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qy5pluw2bsuq2x6albsgkvx3/app.thesocialwire.operations.acknowledgeAlert/examples)

## Definitions

### `app.thesocialwire.operations.acknowledgeAlert`

**Type**: `procedure`

The Social Wire operator procedure acknowledgeAlert.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes |  |
| `auditNote` | `string` | No |  |
| `idempotencyKey` | `string` | Yes |  |
| `expectedVersion` | `integer` | Yes |  |
| `environmentConfirmation` | `string` | No |  |

#### Output

**Encoding**: `application/json`

#### Errors

- **InvalidRequest**
- **Forbidden**
- **Conflict**
- **Unavailable**

## Raw Schema

```json
{
  "id": "app.thesocialwire.operations.acknowledgeAlert",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "id",
            "idempotencyKey",
            "expectedVersion"
          ],
          "properties": {
            "id": {
              "type": "string",
              "maxLength": 256
            },
            "auditNote": {
              "type": "string",
              "maxLength": 2000
            },
            "idempotencyKey": {
              "type": "string",
              "maxLength": 128,
              "minLength": 1
            },
            "expectedVersion": {
              "type": "integer",
              "minimum": 0
            },
            "environmentConfirmation": {
              "type": "string",
              "maxLength": 32
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "InvalidRequest"
        },
        {
          "name": "Forbidden"
        },
        {
          "name": "Conflict"
        },
        {
          "name": "Unavailable"
        }
      ],
      "output": {
        "schema": {
          "ref": "app.thesocialwire.defs#jsonObject",
          "type": "ref"
        },
        "encoding": "application/json"
      },
      "description": "The Social Wire operator procedure acknowledgeAlert."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
