DELETE
/
brain
/
{brain_id}
curl --request DELETE \
  --url https://api.isosceles.ai/brain/{brain_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "message": "Knowledge base deleted."
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

brain_id
string
required

Response

200 - application/json
message
string

A message indicating the result of the delete operation

Example:

"Document deleted successfully."