Skip to main content
DELETE
https://app.famulor.de
/
api
/
user
/
knowledgebases
/
{id}
Delete Knowledge Base
curl --request DELETE \
  --url https://app.famulor.de/api/user/knowledgebases/{id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Knowledgebase deleted successfully."
}
This endpoint permanently deletes a knowledge base and all associated documents. This action cannot be undone.

Path Parameters

id
integer
required
The unique identifier of the knowledge base to delete

Response Fields

message
string
Success message

What Gets Deleted

When you delete a knowledge base:
  • All documents in the knowledge base are permanently deleted
  • Vector embeddings are removed from the vector database
  • Document storage data is cleaned up from external services

What Happens to Attached Assistants

All assistants that used this knowledge base will have their knowledge base reference removed. They will continue to function, but without the knowledge base context.
This action is irreversible. All documents and their processed content will be permanently deleted. Make sure you want to delete this knowledge base before proceeding.
{
  "message": "Knowledgebase deleted successfully."
}