Recent searches

in

Site Authentication

On this page

Delete a 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"
}

Remove an allowed user from a Site's Account Authentication

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