> ## Documentation Index
> Fetch the complete documentation index at: https://docs.autocalls.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete API key

> Delete an API key

This endpoint permanently deletes an API key. Any applications using this key will immediately lose access.

### Path Parameters

<ParamField path="id" type="integer" required>
  The unique identifier of the API key to delete
</ParamField>

### Response

<ResponseField name="message" type="string">
  Success message
</ResponseField>

<ResponseExample>
  ```json 200 Response theme={null}
  {
    "message": "API key deleted successfully."
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "message": "API key not found."
  }
  ```
</ResponseExample>

<Warning>
  This action is immediate and cannot be undone. Any applications using this API key will stop working immediately.
</Warning>
