Skip to main content
DELETE
http://localhost:3000
/
api-keys
/
{id}
curl -X DELETE 'https://api.example.com/api-keys/apk_001' \
  -H 'Authorization: Bearer YOUR_TOKEN'

Path Parameters

id
string
required
The API key ID to delete

Response

Returns 204 No Content on success.
Consider using revoke instead of delete to maintain audit history.
curl -X DELETE 'https://api.example.com/api-keys/apk_001' \
  -H 'Authorization: Bearer YOUR_TOKEN'