Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
JavaScript
const options = {method: 'DELETE'}; fetch('https://blackbox.dasha.ai/api/v1/rag/kb/{id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
curl --request DELETE \ --url https://blackbox.dasha.ai/api/v1/rag/kb/{id}
import requests url = "https://blackbox.dasha.ai/api/v1/rag/kb/{id}" response = requests.delete(url) print(response.text)
Knowledge base ID
OK
Was this page helpful?