pub.chive.governance.rejectElevation

chive.pub

Documentation

Reject a pending elevation request. Only accessible by administrators.

main procedure

Reject a pending elevation request. Only accessible by administrators.

Input

Encodingapplication/json
reason string Required

Reason for rejection

maxLength: 1000 bytesminLength: 10 bytes
requestId string Required

ID of the elevation request to reject

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",
        "reason"
      ],
      "properties": {
        "reason": {
          "type": "string",
          "maxLength": 1000,
          "minLength": 10,
          "description": "Reason for rejection"
        },
        "requestId": {
          "type": "string",
          "description": "ID of the elevation request to reject"
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "AuthenticationRequired"
    },
    {
      "name": "Unauthorized"
    },
    {
      "name": "NotFound"
    }
  ],
  "output": {
    "schema": {
      "ref": "#elevationResult",
      "type": "ref"
    },
    "encoding": "application/json"
  },
  "description": "Reject 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

@