dev.cartridge.getVerificationRequest

cartridge.dev

Documentation

Get a verification request. Non-admins can only view their own requests.

main query

Get a verification request. Non-admins can only view their own requests.

Parameters

id string Optional

ID of the verification request.

requesterDid string did Optional

Get the most recent request for this DID. Ignored if id is provided.

Output

Encodingapplication/json
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://api.bsky.social)
Parameters
ID of the verification request.
Get the most recent request for this DID. Ignored if id is provided.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "request"
      ],
      "properties": {
        "request": {
          "ref": "#verificationRequestView",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "id": {
        "type": "string",
        "maxLength": 128,
        "description": "ID of the verification request."
      },
      "requesterDid": {
        "type": "string",
        "format": "did",
        "description": "Get the most recent request for this DID. Ignored if id is provided."
      }
    }
  },
  "description": "Get a verification request. Non-admins can only view their own requests."
}
verificationRequestView object

No description available.

Properties

accountType string Required

No description available.

maxLength: 64 bytes
contact string Optional

No description available.

maxLength: 256 bytes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

id string Required

No description available.

maxLength: 128 bytes
message string Required

No description available.

maxLength: 3000 bytes
requesterDid string did Required

A decentralized identifier (DID).

reviewReason string Optional

No description available.

maxLength: 3000 bytes
reviewedAt string datetime Optional

An RFC 3339 formatted timestamp.

reviewedBy string did Optional

A decentralized identifier (DID).

status string Required

No description available.

maxLength: 64 bytes
Known values: pending, approved, denied
View raw schema
{
  "type": "object",
  "required": [
    "id",
    "requesterDid",
    "accountType",
    "message",
    "status",
    "createdAt"
  ],
  "properties": {
    "id": {
      "type": "string",
      "maxLength": 128
    },
    "status": {
      "type": "string",
      "maxLength": 64,
      "knownValues": [
        "pending",
        "approved",
        "denied"
      ]
    },
    "contact": {
      "type": "string",
      "maxLength": 256
    },
    "message": {
      "type": "string",
      "maxLength": 3000
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "reviewedAt": {
      "type": "string",
      "format": "datetime"
    },
    "reviewedBy": {
      "type": "string",
      "format": "did"
    },
    "accountType": {
      "type": "string",
      "maxLength": 64
    },
    "requesterDid": {
      "type": "string",
      "format": "did"
    },
    "reviewReason": {
      "type": "string",
      "maxLength": 3000
    }
  }
}

Lexicon Garden

@