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

# Delete Contact

> Delete a contact by ID.

<Note>
  Retrieve your API Key from your [VozAgent Dashboard](https://app.vozagent.ai/settings/api).
</Note>

## Path parameters

<ParamField path="id" type="string" required>
  The unique identifier of the contact to delete.
</ParamField>

## Response

Returns a success confirmation. This action cannot be undone.

<RequestExample>
  ```bash theme={null}
  curl -X DELETE https://api.vozagent.ai/v1/contacts/c1a2b3c4... \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "message": "Contact deleted successfully"
  }
  ```
</ResponseExample>
