Skip to main content
DELETE
/
api
/
knowledge-base
/
{documentation_id}
Delete Document
curl --request DELETE \
  --url https://api.example.com/api/knowledge-base/{documentation_id}
{
  "success": true,
  "message": "Document 'Product Manual' deleted successfully"
}
Delete a document from the knowledge base. This removes it from storage and all attached agents.
documentation_id
string
required
The unique identifier of the document.

Response

success
boolean
Indicates if the deletion was successful.
{
  "success": true,
  "message": "Document 'Product Manual' deleted successfully"
}