curl --request DELETE \
     --url https://mdb.ai/api/datasources/datasource_name \
     --header 'Authorization: Bearer MINDS_API_KEY'
200 OK

This API endpoint deletes a specific Datasource using the DELETE method.

Body

None.

Response

status
string
required

HTTP status code indicating success. 200 OK confirms the Datasource 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

datasource_name
string
required

The name of the Datasource you want to delete.

curl --request DELETE \
     --url https://mdb.ai/api/datasources/datasource_name \
     --header 'Authorization: Bearer MINDS_API_KEY'
200 OK