pub.chive.governance.approveElevation

chive.pub

Documentation

Approve a pending elevation request. Only accessible by administrators.

main procedure

Approve a pending elevation request. Only accessible by administrators.

Input

Encodingapplication/json
requestId string Required

ID of the elevation request to approve

verificationNotes string Optional

Optional admin verification notes

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": [
        "requestId"
      ],
      "properties": {
        "requestId": {
          "type": "string",
          "description": "ID of the elevation request to approve"
        },
        "verificationNotes": {
          "type": "string",
          "description": "Optional admin verification notes"
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "AuthenticationRequired"
    },
    {
      "name": "Unauthorized"
    },
    {
      "name": "NotFound"
    }
  ],
  "output": {
    "schema": {
      "ref": "#elevationResult",
      "type": "ref"
    },
    "encoding": "application/json"
  },
  "description": "Approve a pending elevation request. Only accessible by administrators."
}
elevationResult object

Result of elevation operation

Properties

message string Required

Human-readable result message

requestId string Optional

Elevation request ID

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"
    },
    "requestId": {
      "type": "string",
      "description": "Elevation request ID"
    }
  },
  "description": "Result of elevation operation"
}

Lexicon Garden

@