Skip to main content
GET
/
v1
/
risk-score
/
ca-telematics
/
job
/
{job_id}
/
status
Get Job Status
curl --request GET \
  --url https://api.example.com/v1/risk-score/ca-telematics/job/{job_id}/status \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "<string>",
  "status": "pending",
  "error_message": ""
}

Authorizations

Authorization
string
header
required

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

Path Parameters

job_id
string
required

Response

Successful Response

job_id
string
required

Unique identifier for the batch job

Example:

"job_2fb5792c"

status
enum<string>
required

Current status of the job

Available options:
pending,
processing,
completed,
failed,
expired
error_message
string | null
required

Error message if job failed

Example:

""