Skip to main content
GET
/
api
/
public
/
v1
/
jobs
/
{jobId}
Get job status
curl --request GET \
  --url https://{BaseURL}/api/public/v1/jobs/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "jobId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "<string>",
    "assetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "jobSource": "<string>",
    "jobSourceId": "<string>",
    "startedAt": "<string>",
    "finishedAt": "<string>"
  }
}
Returns status (pending, running, success, warning, or failed), assetId, jobSource, and start/finish times. You only see jobs for assets you can read; otherwise the response is 404 (same as “wrong id”).

Authorizations

Authorization
string
header
required

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

Path Parameters

jobId
string<uuid>
required

UUID of the job.

Response

Job found.

data
object
required