Skip to main content
DELETE
/
api
/
v1
/
agents
/
{agent_id}
/
callback
curl -X DELETE "https://app.talkover.ai/api/v1/agents/agent-uuid-1/callback" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "message": "Callback role removed"
}

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

agent_id
string
required
UUID of the callback agent.

Request headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here

Examples

curl -X DELETE "https://app.talkover.ai/api/v1/agents/agent-uuid-1/callback" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "message": "Callback role removed"
}

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.