Agents

Detach tool

Detach a tool from an agent.

DELETEhttps://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

spacestringPflicht

Slug of the space, e.g. `praxis-mueller`. Returned by `GET /spaces`.

agentuuidPflicht

ID of the agent.

tooluuidPflicht

ID 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": [],
    "…": "…"
  }
}