Python
import requests url = "http://api/apollo/index-pipelines/{id}/collections/{collection}/index" payload = "<any>" headers = {"Content-Type": "application/vnd.lucidworks-document"} response = requests.post(url, json=payload, headers=headers) print(response.text)
The body is of type any.
any
successful operation
Was this page helpful?