Skip to main content
PUT
/
solrAdmin
/
{solrApiPath}
/
{path}
Send a Solr command
import requests

url = "https://{FUSION HOST}/api/solrAdmin/{solrApiPath}/{path}"

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

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

print(response.json())

Path Parameters

solrApiPath
string
required

The Solr API Path.

path
string
required

The path to the Solr command to run.

Body

*/* · object

Solr request object.

The body is of type object.