Skip to main content
DELETE
/
api
/
agents
/
{agent_uid}
/
tools
/
{tool_uid}
Delete tool
curl --request DELETE \
  --url https://api.example.com/api/agents/{agent_uid}/tools/{tool_uid}
Removes a tool from an agent.

Path parameters

agent_uid
string
required
UUID of the agent.
tool_uid
string
required
UUID of the tool to remove.

Response

Returns 200 on success:
{
  "status": "success",
  "status_code": 200,
  "message": "Tool deleted"
}

Errors

StatusReason
404Agent or tool not found
To temporarily disable a tool without removing it, use Update tool and set is_active to false.