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.
Delete Agent
Permanently delete a voice agent and all its associated data including trainings, actions, and phone number associations. This action cannot be undone.
Endpoint
DELETE /api/v1/agents/{agent_id}
Path Parameters
The unique identifier of the voice agent to delete. You can find this in your dashboard under Voice Agents.
Bearer token for authentication. Format: Bearer talq_your_environment_token_here
Example Requests
# Request 1: Delete a specific agent by ID
curl -X DELETE "https://app.talkover.ai/api/v1/agents/550e8400-e29b-41d4-a716-446655440000" \
-H "Authorization: Bearer talq_your_environment_token_here"
Response
Success Response (200 OK)
{
"success": true,
"message": "Agent deleted successfully"
}
Response Fields
Indicates if the operation was successful.
Success message confirming the agent was deleted.
Error Responses
404 Not Found
{
"success": false,
"message": "Agent not found"
}
401 Unauthorized
{
"success": false,
"message": "Unauthenticated."
}
403 Forbidden
{
"success": false,
"message": "You are not authorized to perform this action."
}
409 Conflict
{
"success": false,
"message": "Cannot delete agent while it has active calls."
}
Error Codes
| Code | Description | HTTP Status |
|---|
AGENT_NOT_FOUND | Specified agent does not exist | 404 |
INVALID_TOKEN | Authentication token is invalid or missing | 401 |
UNAUTHORIZED | User does not have permission to delete this agent | 403 |
AGENT_HAS_ACTIVE_CALLS | Agent cannot be deleted while it has active calls | 409 |
AGENT_IS_PUBLISHED | Published agents must be unpublished before deletion | 409 |
Important Notes
This action is irreversible. Once an agent is deleted, all associated data including:
- Agent configuration
- Training data
- Actions and webhooks
- Phone number associations
- Call history
Will be permanently removed and cannot be recovered.
Published agents must be unpublished first. If the agent is currently published, you must unpublish it before deletion.
Best Practices
- Verify agent status - Check if the agent is published before attempting deletion
- Backup important data - Export any training data or configurations you want to keep
- Check for active calls - Ensure no calls are currently in progress
- Update integrations - Remove any webhook URLs or integrations that reference this agent
- Notify team members - Inform other users who might be using this agent
- List Agents:
GET /api/v1/agents
- Get Agent:
GET /api/v1/agents/{agent_id}
- Unpublish Agent:
POST /api/v1/agents/{agent_id}/unpublish
- Create Agent:
POST /api/v1/agents