Skip to main content
POST
/
sdk
/
revoke-verification
Revoke a pending verification
curl --request POST \
  --url https://api.botshield.ai/operations/sdk/revoke-verification \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "scope": "<string>",
  "user_email": "[email protected]",
  "partner_user_id": "<string>"
}
'
{
  "data": {
    "success": true,
    "revoked_count": 123,
    "message": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key with Bearer prefix (e.g., 'Bearer bs_live_sk_...' or 'Bearer pk_live_...')

Body

application/json
scope
string
required
user_email
string<email>
partner_user_id
string

Response

Revocation result

data
object
required