Skip to main content
DELETE
/
api
/
agents
/
{agent_uid}
Delete agent
curl --request DELETE \
  --url https://api.example.com/api/agents/{agent_uid}
Permanently deletes an agent and all its triggers, tools, and configuration. This action cannot be undone.

Path parameters

agent_uid
string
required
UUID of the agent to delete.

Response

Returns 200 on success:
{
  "status": "success",
  "status_code": 200,
  "message": "Agent deleted"
}
Deleting an agent is irreversible. Consider setting the agent status to paused instead if you may need it again.