POST
/
upload
/
verify_processing
cURL
curl --request POST \
  --url https://api.usecortex.ai/upload/verify_processing \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: <content-type>'
{
  "file_id": "123123123123",
  "indexing_status": "success"
}

Sample Request

curl --location 'https://api.usecortex.ai/upload/verify_processing?file_id={FILE_ID}' \
  --header 'Authorization: Bearer {API_KEY}' \
  --header 'Content-Type: application/json'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required

Bearer token (Firebase token)

Content-Type
string
default:application/json
required

Request content type

Query Parameters

file_id
string
required

ID of the uploaded file

Response

200
application/json

Processing status returned successfully

The response is of type object.