cURL
curl --request GET \ --url https://api.justpaid.io/api/v1/usage/job_status/{job_id} \ --header 'Authorization: Bearer <token>'
200
job_in_progress
{ "job_id": "a4f8e9be-3d5b-4f8e-8b4d-9b4e5c9f5a2d", "status": "PROCESSING", "created_at": "2023-10-10T10:00:00Z", "updated_at": "2023-10-10T10:02:00Z", "errors": null, "info": null, "total_events": 100}
Get the status and results of a previously submitted usage data batch job by providing the job ID returned during submission.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The UUID of the batch job.
Successfully retrieved the batch job status.
Was this page helpful?