Clear the crawlDB
import requests
url = "https://{FUSION HOST}/api/connectors/datasources/{id}/db"
response = requests.delete(url)
print(response.text)Clear the crawlDB
Clear crawlDB of the given datasource configuration.
The output from this request is empty. Note that no documents are removed from the index unless you set removeOutput to true. However, the next datasource run treats all documents as though they were never seen by the connectors.
DELETE
/
connectors
/
datasources
/
{id}
/
db
Clear the crawlDB
import requests
url = "https://{FUSION HOST}/api/connectors/datasources/{id}/db"
response = requests.delete(url)
print(response.text)Was this page helpful?
⌘I