Delete API Key
DELETE /api/v1/api-keys/{id}/
Permanently delete an API key. This immediately revokes all API access using this key.
Authentication
Requires an API key with api_keys:write scope, or a dashboard session. Pass via the X-API-Key header.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
id | string (UUID) | The unique identifier of the API key to delete. |
⚠️
Deleting a key immediately revokes all API access using that key. Any integrations using this key will stop working immediately.
Response
Status: 204 No Content
No response body.
Errors
| Status | Description |
|---|---|
401 | Missing or invalid API key. |
403 | API key does not have api_keys:write scope. |
404 | API key not found. |
Code Examples
curl -X DELETE https://api.parsifyhq.com/api/v1/api-keys/a1b2c3d4-e5f6-7890-abcd-ef1234567890/ \
-H "X-API-Key: YOUR_API_KEY"