Index a document using a profile ID
import requests
url = "https://{FUSION HOST}/async-parsing/parser/standalone/{profileId}"
response = requests.post(url)
print(response.text)Index a document using a profile ID
Index the document with the given index profile and associated index pipeline, collection ID, and parser.
POST
/
async-parsing
/
parser
/
standalone
/
{profileId}
Index a document using a profile ID
import requests
url = "https://{FUSION HOST}/async-parsing/parser/standalone/{profileId}"
response = requests.post(url)
print(response.text)Headers
The MIME type of the content being indexed, typically application/octet-stream.
Path Parameters
The ID of the index profile used to process the document.
Query Parameters
Binary payload to be indexed by the specified pipeline and parser.
Response
204
No Content
Was this page helpful?
⌘I