Upload text to be processed and indexed for semantic search
cURL
curl --request POST \ --url https://api.liquidindex.dev/upload/text \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "owner_id": "<string>", "text": "<string>" } '
{ "job_id": "1234567890", "status": "PENDING" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The project/customer ID to associate the text with
The text to be uploaded and processed
Successful query response
The Job ID belonging to the text upload
"1234567890"
The status of the text upload
"PENDING"