Purge the entire AI Search index
DELETE
/api/v3/organisations/{organisation}/projects/{project}/ai-search/index
const url = 'https://dashboard.quantcdn.io/api/v3/organisations/example/projects/example/ai-search/index';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://dashboard.quantcdn.io/api/v3/organisations/example/projects/example/ai-search/index \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
project
required
string
Responses
Section titled “Responses”Purged
