Appearance
Get job status
GET
/api/v1/jobs/{job_id}
Returns the current status and progress of a background job. Used for polling job completion.
Authorizations
HTTPBearer
Type
HTTP (bearer)
Parameters
Path Parameters
job_id*
Type
Requiredstring
Format
"uuid"Responses
Successful Response
application/json
JSON
{
"id": "string",
"job_type": "string",
"status": "string",
"progress_current": 0,
"progress_total": 0,
"progress_detail": [
],
"result": {
},
"error": "string",
"created_at": "string",
"started_at": "string",
"completed_at": "string"
}