Skip to main content
DELETE
/
api-keys
/
{api_key_id}
Delete member's API key
curl --request DELETE \
  --url https://api.example.com/api-keys/{api_key_id}/ \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Api-key
string | null

Path Parameters

api_key_id
string<uuid>
required

Response

Success or failure status of the operation

A standard reply for many of our calls which has a 'status' ('success/failure') field and an 'error' field for failures.

Attributes:

  • status: The status of the operation. Always one of 'success' or 'failure'.
  • error: The error message, if any. Empty string if none.
status
string
required

The status of the operation. Always one of 'success' or 'failure'.

error
string
required

The error message, if any. Empty string if none.