Send a POST request to Solr
import requests
url = "https://{FUSION HOST}/api/solr/{collection}/{path}"
payload = {}
headers = {"Content-Type": "*/*"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)This response has no body data.Send a proxy request to Solr.
POST
/
solr
/
{collection}
/
{path}
Send a POST request to Solr
import requests
url = "https://{FUSION HOST}/api/solr/{collection}/{path}"
payload = {}
headers = {"Content-Type": "*/*"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)This response has no body data.Was this page helpful?
⌘I