Jobs /
Get run details
Returns data about the given job run
Required permission
Project > Jobs > General > Read
Path parameters
projectId
string requiredID of the projectjobId
string requiredID of the jobrunId
string requiredID of the job run
Response body
- {object}Response object.
data
{object} requiredResult data.id
string requiredThe ID of the job runactive
integer requiredWhether the run is currently in progressone of0, 1backoffLimit
integer requiredThe number of attempts to retry this job run before it is marked as failed.completions
integer requiredThe number of times this job run has concluded successfully or with an error.concluded
boolean requiredHas the job run finished?failed
integer requiredWhether this job run failed to complete successfullyone of0, 1runName
string requiredThe name of the job runstatus
string requiredA string representing the status of the job. Either SUCCESS, RUNNING or FAILEDone ofSUCCESS, RUNNING, FAILEDsucceeded
integer requiredWhether this job run completed successfullyone of0, 1startedAt
string requiredThe timestamp when the job run started.concludedAt
string requiredThe timestamp when the job run concluded.
API
CLI
JS Client
GET /v1/projects/{projectId}/jobs/{jobId}/runs/{runId}
Example response
200 OK
Details about the given job run.
JSON
{
"data": {
"id": "d34582a4-35bd-4c71-8e7c-e36999b88723",
"active": 0,
"backoffLimit": 0,
"completions": 1,
"concluded": true,
"failed": 0,
"runName": "example-job-5fcf67bc56e1913e21d49504",
"status": "SUCCESS",
"succeeded": 0,
"startedAt": "2020-12-08T11:47:08Z",
"concludedAt": "2020-12-08T11:52:08Z"
}
}