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

# Delete API Key

> Delete an API key

<ParamField path="uuid" type="string" required>
  The unique identifier (UUID) of the API key
</ParamField>

<Warning>
  Deleted API keys cannot be recovered. Any applications using this key will immediately lose access.
</Warning>

<ResponseExample>
  ```json 200 - Success theme={null}
  {
    "success": true,
    "message": "API key deleted successfully."
  }
  ```

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