Upload documents to be processed and indexed for semantic search
cURL
curl --request POST \ --url https://api.liquidindex.dev/upload/file \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: multipart/form-data' \ --form file='@example-file' \ --form 'data={ "owner_id": "<string>" }'
{ "job_id": "1234567890", "status": "PENDING" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The documents to be uploaded and processed
Show child attributes
Documents uploaded successfully
The Job ID belonging to the file upload
"1234567890"
The status of the file upload
"PENDING"