Get

Gets information about queued job.

Request

GET https://ttv.microworkers.com/api/v2/queue-jobs/{jobId}

Parameters

Path Parameter

Name

Type

Description

jobId

string

The ID of Queued job.

Response

Response HTTP Codes

Http Code

Response Type

Description

200

JobQueueInfoResponse

OK

401

Unauthorized

404

Not found

Response Body

{
  "id": string,
  "status": string,
  "output": string
}

JobQueueInfoResponse

Property

Type

Description

id

string

The ID of Queued Job.

status

string

The status of Queued Job.

  • Pending - Job is scheduled.

  • Uploading - Job processing is in progress.

  • Uploaded - Job is successfully completed.

  • Validation_Error - Job is completed with input validation error.

  • Upload_Error - Job is completed with error.

output

string

Output returned by queued job processor.