curl -X DELETE https://api.60db.ai/developer/api/key-123 \
-H "Authorization: Bearer your-api-key"
await client.deleteApiKey("key-123");
client.delete_api_key('key-123')
{
"success": true,
"message": "API key deleted successfully"
}
API Keys
Delete API Key
Delete an API key
DELETE
/
developer
/
api
/
:id
curl -X DELETE https://api.60db.ai/developer/api/key-123 \
-H "Authorization: Bearer your-api-key"
await client.deleteApiKey("key-123");
client.delete_api_key('key-123')
{
"success": true,
"message": "API key deleted successfully"
}
Request
Path Parameters
string
required
The ID of the API key to delete
Headers
string
required
Bearer token with your API key
This action cannot be undone. Any applications using this key will lose access
immediately.
Response
boolean
Indicates successful deletion
string
Confirmation message
curl -X DELETE https://api.60db.ai/developer/api/key-123 \
-H "Authorization: Bearer your-api-key"
await client.deleteApiKey("key-123");
client.delete_api_key('key-123')
{
"success": true,
"message": "API key deleted successfully"
}