Send a Solr command
import requests
url = "https://{FUSION HOST}/api/solrAdmin/{solrApiPath}/{path}"
response = requests.delete(url)
print(response.text)This response has no body data.Send a Solr command
Issue a Solr command to the search cluster.
Note that because one searchCluster may host several collections, it is not recommended to use this with a collection-level command (such as a query, or document update).
DELETE
/
solrAdmin
/
{solrApiPath}
/
{path}
Send a Solr command
import requests
url = "https://{FUSION HOST}/api/solrAdmin/{solrApiPath}/{path}"
response = requests.delete(url)
print(response.text)This response has no body data.Was this page helpful?
⌘I