# pub.chive.admin.dismissDLQEntry

> Published by [chive.pub](https://lexicon.garden/identity/did:plc:7natp5xae72bddaqlkef2t4e)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.admin.dismissDLQEntry)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.admin.dismissDLQEntry/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.admin.dismissDLQEntry/examples)

## Definitions

### `pub.chive.admin.dismissDLQEntry`

**Type**: `procedure`

Remove a single DLQ entry without retrying

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `index` | `integer` | Yes | Index of the DLQ entry to dismiss |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `message` | `string` | No | Status message |
| `success` | `boolean` | Yes | Whether the entry was dismissed |

#### Errors

- **AuthenticationRequired**
- **AdminRequired**
- **InvalidRequest**

## Raw Schema

```json
{
  "id": "pub.chive.admin.dismissDLQEntry",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "index"
          ],
          "properties": {
            "index": {
              "type": "integer",
              "description": "Index of the DLQ entry to dismiss"
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "AuthenticationRequired"
        },
        {
          "name": "AdminRequired"
        },
        {
          "name": "InvalidRequest"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "success"
          ],
          "properties": {
            "message": {
              "type": "string",
              "description": "Status message"
            },
            "success": {
              "type": "boolean",
              "description": "Whether the entry was dismissed"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Remove a single DLQ entry without retrying"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
