pub.chive.claiming.approveClaim

chive.pub

Documentation

Approve a pending claim request. Admin only.

main procedure

Approve a pending claim request. Admin only.

Parameters

claimId integer Required

ID of the claim request to approve

Output

Encodingapplication/json
success boolean Required

Whether the approval was successful

Errors

AuthenticationRequired Authentication is required to approve claims
Forbidden Only administrators can approve claims
ClaimNotFound The specified claim does not exist
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)
View raw schema
{
  "type": "procedure",
  "errors": [
    {
      "name": "AuthenticationRequired",
      "description": "Authentication is required to approve claims"
    },
    {
      "name": "Forbidden",
      "description": "Only administrators can approve claims"
    },
    {
      "name": "ClaimNotFound",
      "description": "The specified claim does not exist"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "success"
      ],
      "properties": {
        "success": {
          "type": "boolean",
          "description": "Whether the approval was successful"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "claimId"
    ],
    "properties": {
      "claimId": {
        "type": "integer",
        "minimum": 1,
        "description": "ID of the claim request to approve"
      }
    }
  },
  "description": "Approve a pending claim request. Admin only."
}

Lexicon Garden

@