Skip to main content
DELETE
/
solr
/
{collection}
/
{path}
Send a request to Solr
import requests

url = "https://{FUSION HOST}/api/solr/{collection}/{path}"

payload = {}
headers = {"Content-Type": "*/*"}

response = requests.delete(url, json=payload, headers=headers)

print(response.json())

Path Parameters

collection
string
required

The collection ID.

path
string
required

The Solr command path.

Body

*/* · object