curl --request DELETE \
     --url 'https://mdb.ai/api/projects/mindsdb/minds/mind_name' \
     --header 'Authorization: Bearer MINDS_API_KEY'
200 OK
This API endpoint deletes a specific Mind using the DELETE method.

Body

None.

Response

status
string
required
HTTP status code indicating success. 200 OK confirms the Mind was deleted.

Authorization

A valid API key must be passed in the Authorization header:
Authorization: Bearer MINDS_API_KEY
Generate your API key here.

Path Parameters

mind_name
string
required
The name of the Mind you want to delete.
curl --request DELETE \
     --url 'https://mdb.ai/api/projects/mindsdb/minds/mind_name' \
     --header 'Authorization: Bearer MINDS_API_KEY'
200 OK