dev.cartridge.reviewVerificationRequest

cartridge.dev

Documentation

Approve or deny a verification request. Admin only. On approval, writes verification records from the verifier account.

main procedure

Approve or deny a verification request. Admin only. On approval, writes verification records from the verifier account.

Input

Encodingapplication/json
reason string Optional

No description available.

maxGraphemes: 3000 graphemes
requestId string Required

No description available.

status string Required

No description available.

Output

Encodingapplication/json
requestId string Required

No description available.

verificationUri stringat-uri Optional

URI of the dev.cartridge.graph.verification record, present on approval.

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",
        "status"
      ],
      "properties": {
        "reason": {
          "type": "string",
          "maxGraphemes": 3000
        },
        "status": {
          "type": "string",
          "knownValues": [
            "approved",
            "denied"
          ]
        },
        "requestId": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "requestId"
      ],
      "properties": {
        "requestId": {
          "type": "string"
        },
        "verificationUri": {
          "type": "string",
          "format": "at-uri",
          "description": "URI of the dev.cartridge.graph.verification record, present on approval."
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Approve or deny a verification request. Admin only. On approval, writes verification records from the verifier account."
}

Lexicon Garden

@