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

# Remove Callback Role

> Remove the callback role from an agent

# Remove Callback Role

Remove the callback role from an agent. The agent stops handling callbacks but otherwise remains active for normal inbound traffic.

## Endpoint

```
DELETE /api/v1/agents/{agent_id}/callback
```

## Path parameters

<ParamField path="agent_id" type="string" required>UUID of the callback agent.</ParamField>

## Request headers

<ParamField header="Authorization" type="string" required>
  Bearer token. Format: `Bearer talq_your_environment_token_here`
</ParamField>

## Examples

<RequestExample>
  ```bash theme={null}
  curl -X DELETE "https://app.talkover.ai/api/v1/agents/agent-uuid-1/callback" \
    -H "Authorization: Bearer talq_your_environment_token_here"
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "message": "Callback role removed"
  }
  ```
</ResponseExample>

## Notes

* The agent's other configuration (knowledge, voice, phone numbers) is preserved.
* Inbound calls from contacts previously routed via callback will now follow the default routing for the dialed number.
