Agents
Detach tool
Detach a tool from an agent.
DELETE
https://app.elunos.ai/api/v1/spaces/{space}/agents/{agent}/tools/{tool}Removes a tool from the agent's tool_ids. The tool itself stays and may remain attached to other agents.
Path parameters
spacestringPflichtSlug of the space, e.g. `praxis-mueller`. Returned by `GET /spaces`.
agentuuidPflichtID of the agent.
tooluuidPflichtID of the tool.
Example
curl -X DELETE https://app.elunos.ai/api/v1/spaces/praxis-mueller/agents/0199a3c2-7d4e-7b21-9f3a-2c5e8d1b4a70/tools/0199a3c4-1f2a-7c55-8e10-6b7d9a3e2f11 \
-H "Authorization: Bearer np_xxxxxxxx"Response
{
"data": {
"id": "0199a3c2-7d4e-7b21-9f3a-2c5e8d1b4a70",
"tool_ids": [],
"…": "…"
}
}