Skip to main content
DELETE
https://api.getmalakai.com/api/
/
api
/
knowledgebase
/
{id}
Delete a Knowlegde Base
curl --request DELETE \
  --url https://api.getmalakai.com/api/api/knowledgebase/{id} \
  --header 'Authorization: <authorization>' \
  --header 'x-access-token: <x-access-token>'
{
  "responseCode": "2000",
  "message": "knowledgebase deleted successfully."
}

Headers

Authorization
string
required
Your API key for authentication. Prefix with Bearer .
x-access-token
string
required
Your access token for authentication.

Path Parameters

id
string
required
The unique identifier of the knowledgebase you want to delete.

Response

A successful deletion will return a success status and message.
status
string
Confirms the request was successful.
message
string
A message indicating the result of the deletion.
{
  "responseCode": "2000",
  "message": "knowledgebase deleted successfully."
}