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

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

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

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

print(response.text)
This response has no body data.

Documentation Index

Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

collection
string
required

The collection ID.

path
string
required

The Solr command path.

Pattern: .*

Body

*/*

The body is of type object.

Response

200 - undefined