Job Request Status
You can track the status of a job using the job status endpoint.
Job Status Request Example (cURL):
curl -X GET https://api.fileverbs.com/api/v1/jobrequests/603c9d91f7f1c51774f55ed1 \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Response:
{
"jobId": "603c9d91f7f1c51774f55ed1",
"status": "In Progress",
"createdDate": "2024-10-06T12:00:00Z",
"updatedDate": "2024-10-06T12:30:00Z"
}
Possible Job Status Values:
- Created: Job has been created, but processing has not started yet.
- In Progress: The job is currently being processed.
- Completed: Job has been processed successfully, and output is available for download.
- Failed: The job failed due to some error during processing.
- Canceled: The job was canceled before processing could complete.