Delete one CometAPI API key by ID for the authenticated account.
curl -X DELETE https://api.cometapi.com/api/token/1234 \
-H "Authorization: your-access-token"{
"success": true,
"message": ""
}Use this endpoint to delete an API key by ID.Documentation Index
Fetch the complete documentation index at: https://apidoc.cometapi.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorization header value. Do not prefix it with Bearer.id path parameter is the numeric key ID returned by List API keys. Deleting a key is permanent for that key value; create a new API key if the integration needs credentials again.Personal access token copied from CometAPI Console > Personal Settings. Send the raw token value; do not prefix it with Bearer.
Numeric API key ID returned by the list endpoint. Deleting this ID permanently invalidates that key value.
curl -X DELETE https://api.cometapi.com/api/token/1234 \
-H "Authorization: your-access-token"{
"success": true,
"message": ""
}