## Delete an API key `DELETE https://getkollek.com/api/administration/api/{id}` Revoke an API key. Requests made with the revoked token stop working immediately. ### Path parameters - `id` (integer, required): The ID of the API key. **Returns:** An empty response. ### Example request ```bash curl https://getkollek.com/api/administration/api/1 \ -X DELETE \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 204` The response has no body.