GET
/
api
/
v0
/
job-statuses
/
{job_status_id}
{
  "id": 123,
  "user_id": 123,
  "status": "<string>",
  "error_message": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Headers

authorization
string

Path Parameters

job_status_id
integer
required

Response

200
application/json
Successful Response
id
integer
required

The ID of the job status.

user_id
integer
required

The ID of the user who created the job status.

status
string
required

The status of the job. Options: queued, processing, done, error.

error_message
string | null
required

The error message returned from the job, if any.

created_at
string
required

The date and time the job status was created.