pub.chive.admin.purgeOldDLQ

chive.pub

Documentation

Purge DLQ entries older than a specified number of days

main procedure

Purge DLQ entries older than a specified number of days

Input

Encodingapplication/json
olderThanDays integer Optional

Purge entries older than this many days

minimum: 1

Output

Encodingapplication/json
purgedCount integer Required

Number of entries purged

Errors

AuthenticationRequired
AdminRequired
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "properties": {
        "olderThanDays": {
          "type": "integer",
          "default": 7,
          "minimum": 1,
          "description": "Purge entries older than this many days"
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "AuthenticationRequired"
    },
    {
      "name": "AdminRequired"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "purgedCount"
      ],
      "properties": {
        "purgedCount": {
          "type": "integer",
          "description": "Number of entries purged"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Purge DLQ entries older than a specified number of days"
}

Lexicon Garden

@