Skip to main content
GET
https://operator.opus.com
/
job
/
{jobExecutionId}
/
status
curl --request GET \
  --url https://operator.opus.com/job/{YOUR_JOB_EXECUTION_ID}/status \
  --header 'x-service-key: {YOUR_SERVICE_KEY}'
{
  "status": "IN PROGRESS"
}
After executing a job, you can use this endpoint to check its status. The job can be in one of several states as it progresses through execution.

Path Parameters

jobExecutionId
string
required
The ID of the job whose execution status you want to check

Headers

x-service-key
string
required
Your API authentication key

Response

status
string
required
The current status of the job execution

Status Values

StatusDescription
IN PROGRESSThe job is currently being executed
COMPLETEDThe job has finished successfully
FAILEDThe job encountered an error and could not complete
Poll this endpoint periodically to monitor job progress. Once the status is COMPLETED, you can retrieve the results using the Get Job Results endpoint.
curl --request GET \
  --url https://operator.opus.com/job/{YOUR_JOB_EXECUTION_ID}/status \
  --header 'x-service-key: {YOUR_SERVICE_KEY}'
{
  "status": "IN PROGRESS"
}