cURL
curl --request GET \ --url https://api.glideapps.com/jobs/{jobID} \ --header 'Authorization: Bearer <token>'
{ "data": { "status": "running", "result": "<unknown>", "error": { "message": "<string>" } } }
Check whether a job is finished, and get its result
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
<token>
The ID of the job to check
Show child attributes
The current status of the job
running
succeeded
failed
The result of the job, if it succeeded
The error information, if the job failed
A message describing the error
Was this page helpful?