Keys
Delete API Key
Deletes an API key by its ID. This action is irreversible.
Requirements:
- Authentication required via admin API key
- Key must belong to the authenticated user's workspace
Key Features:
- Permanently revoke API key access
- Idempotent operation (safe to retry)
- Optional Idempotency-Key header for safe retries
Important:
- This action cannot be undone
- Any applications using this key will immediately lose access
- Returns 204 even if the key doesn't exist (idempotent behavior)
Common Use Cases:
- Revoke compromised keys
- Clean up unused keys
- Implement key rotation (delete old, create new)
- Offboard team members
delete/keys/{key_id}
Path parameters
key_idstring required
Unique identifier of the API key to delete
Example:abc123def456
Unique identifier of the API key to delete
Headers
Idempotency-Keystring
Optional idempotency key for safe request retries
Example:550e8400-e29b-41d4-a716-446655440000
Optional idempotency key for safe request retries
Response
API key deleted successfully (or already deleted)
Changes
No recorded changes to this endpoint across all 2 revisions of this API.