pub.chive.governance.revokeDelegation

chive.pub

Documentation

Revoke an active PDS delegation. Only accessible to administrators.

main procedure

Revoke an active PDS delegation. Only accessible to administrators.

Input

Encodingapplication/json
delegationId string Required

ID of the delegation to revoke

Output

Encodingapplication/json

Errors

AuthenticationRequired
Unauthorized
NotFound
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",
      "required": [
        "delegationId"
      ],
      "properties": {
        "delegationId": {
          "type": "string",
          "description": "ID of the delegation to revoke"
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "AuthenticationRequired"
    },
    {
      "name": "Unauthorized"
    },
    {
      "name": "NotFound"
    }
  ],
  "output": {
    "schema": {
      "ref": "#delegationResult",
      "type": "ref"
    },
    "encoding": "application/json"
  },
  "description": "Revoke an active PDS delegation. Only accessible to administrators."
}
delegationResult object

Result of delegation operation

Properties

delegationId string Optional

Delegation ID

message string Required

Human-readable result message

success boolean Required

Whether the operation succeeded

View raw schema
{
  "type": "object",
  "required": [
    "success",
    "message"
  ],
  "properties": {
    "message": {
      "type": "string",
      "description": "Human-readable result message"
    },
    "success": {
      "type": "boolean",
      "description": "Whether the operation succeeded"
    },
    "delegationId": {
      "type": "string",
      "description": "Delegation ID"
    }
  },
  "description": "Result of delegation operation"
}

Lexicon Garden

@