GET
/
jobs
/
{jobID}
cURL
curl --request GET \
  --url https://api.glideapps.com/jobs/{jobID} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "status": "running",
    "result": "<any>",
    "error": {
      "message": "<string>"
    }
  }
}
Returns the status of an asynchronous job.

Authorizations

Authorization
string
header
required

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

Path Parameters

jobID
string
required

The ID of the job to check

Response

data
object
required