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

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

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

response = requests.post(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 body.

The body is of type object.