Skip to main content
POST
/
api
/
knowledge-base
/
detach
Detach from Agent
curl --request POST \
  --url https://api.example.com/api/knowledge-base/detach \
  --header 'Content-Type: application/json' \
  --data '
{
  "agent_id": "<string>",
  "documentation_id": "<string>"
}
'
{
  "success": true,
  "message": "Document detached from agent successfully"
}
Detach a knowledge base document from an agent.
agent_id
string
required
The ID of the agent.
documentation_id
string
required
The ID of the document to detach.

Response

success
boolean
Indicates success.
{
  "success": true,
  "message": "Document detached from agent successfully"
}