Get Job Status
GET/scheduler/runStatus
Get the status of a specific Job.
Request
Query Parameters
runCounter int32required
ID of the run to query
Responses
- 200
- 400
- 401
200
- application/json
- Schema
- Result
Schema
runStatus string
Possible values: [completed
, initializing
, rendering
, canceled
, failed
, running
, waitingToRun
]
runType string
Possible values: [deploy
, refresh
]
runLink string
{
"runStatus": "completed",
"runType": "deploy",
"runLink": "https://app.coalescesoftware.io/runs/1"
}
400
- application/json
- Schema
- Result
Schema
error
object
errorString string
errorDetail string
{
"error":{
"errorString":"400: Error Message",
"errorDetail":"400: Error Message"
}
}
401
- application/json
- Schema
- Result
Schema
error
object
errorString string
errorDetail string
{
"error":{
"errorString":"401: Unable to authenticate, please ensure your token is valid.",
"errorDetail":"401: Unable to authenticate, please ensure your token is valid."
}
}
Loading...