Recent searches

in

Site Authentication

On this page

Delete site bearer token

DELETE/api/v0/authentication/bearer-tokens/{bearer_token_uuid}
Path parameters:
bearer_token_uuidUUIDRequired#
Example request:
Bash
Copied to clipboard
curl https://app.cloudcannon.com/api/v0/authentication/bearer-tokens/{bearer_token_uuid} \
  -X DELETE \
  -H "X-API-KEY: <your-api-key>"
Responses:
204Deleted
401Unauthorized
JSON
Copied to clipboard
{
  "error": "string"
}
403Forbidden
JSON
Copied to clipboard
{
  "error": "string"
}

Delete site authentication user

DELETE/api/v0/authentication/users/{site_user_uuid}
Path parameters:
site_user_uuidUUIDRequired#
Example request:
Bash
Copied to clipboard
curl https://app.cloudcannon.com/api/v0/authentication/users/{site_user_uuid} \
  -X DELETE \
  -H "X-API-KEY: <your-api-key>"
Responses:
204Deleted
401Unauthorized
JSON
Copied to clipboard
{
  "error": "string"
}
403Forbidden
JSON
Copied to clipboard
{
  "error": "string"
}
Open in a new tab