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"
}

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. 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.