GET
/{orgId}/{itemId}/jobs/{jobId}/historyGet job history by jobId. It returns the log of job actions such as running steps, managing job attachments and properties.
Query parameters
| Name | Type | Required | 
|---|---|---|
token | string¦null | 
Path parameters
| Name | Type | Required | 
|---|---|---|
job | string | |
org | string | |
item | string | 
Response status
| Status | Meaning | Description | Schema | 
|---|---|---|---|
| 200 | OK | List of job histories  | inline | 
| 400 | Bad Request | error  | WorkflowExceptionDTO | 
Response details
Status Code 200
JobHistoryRecords
| Name | Type | Required | Description | 
|---|---|---|---|
job | [JobHistory] | 
Examples
Request
# You can also use wget
curl -X GET /{orgId}/{itemId}/jobs/{jobId}/history \
  -H 'Authorization: Bearer <YOUR_TOKEN>'Response
{
  "jobHistory": [
    {
      "date": "2019-08-24T14:15:22Z",
      "jobId": "string",
      "stepId": "string",
      "username": "string",
      "action": "Activated",
      "result": "string",
      "startDate": "2019-08-24T14:15:22Z",
      "endDate": "2019-08-24T14:15:22Z",
      "durationSeconds": 0
    }
  ]
}