Skip to main content
POST
/
async-parsing
/
parser
/
standalone
/
{parserId}
/
index-pipeline
/
{pipelineId}
/
collection
/
{collectionId}
Index a document using parser, pipeline, and collection IDs
import requests

url = "https://{FUSION HOST}/async-parsing/parser/standalone/{parserId}/index-pipeline/{pipelineId}/collection/{collectionId}"

response = requests.post(url)

print(response.text)

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

parserId
string
required

The ID of the parser to use when processing the document.

pipelineId
string
required

The ID of the index pipeline to which the document should be sent.

collectionId
string
required

The ID of the target collection where the document will be indexed.

Query Parameters

request
file
required

Binary payload to be indexed by the specified parser, pipeline, and collection.

Response

204

No Content