Skip to main content
POST
/
upload
/
verify_processing
Verifying Processing
curl --request POST \
  --url https://api.usecortex.ai/upload/verify_processing \
  --header 'Authorization: Bearer <token>'
{
  "file_id": "CortexDoc1234",
  "indexing_status": "<indexing_status>",
  "error_code": "<error_code>",
  "success": true,
  "message": "Processing status retrieved successfully"
}
Hit the Try it button to try this API now in our playground. It’s the best way to check the full request and response in one place, customize your parameters, and generate ready-to-use code snippets.

Examples

  • API Request
  • TypeScript
  • Python (Sync)
curl --request POST \
  --url 'https://api.usecortex.ai/upload/verify_processing?file_id=CortexDoc1234&tenant_id=tenant_1234' \
  --header 'Authorization: Bearer YOUR_API_KEY'

Error Responses

All endpoints return consistent error responses following the standard format. For detailed error information, see our Error Responses documentation.

Authorizations

Authorization
string
header
required

Query Parameters

file_id
string
required
Example:
tenant_id
string
default:""
Example:
sub_tenant_id
string | null
Example:

Response

file_id
string
required
Example:
indexing_status
string
required
Example:
error_code
string
default:""
Example:
success
boolean
default:true
Example:
message
string
default:Processing status retrieved successfully