Skip to content

getJobHistory

GET
Use dark colors for code blocksCopy
1
/{orgId}/{itemId}/jobs/{jobId}/history
Get job history by jobId

Get job history by jobId. It returns the log of job actions such as running steps, managing job attachments and properties.

Query parameters

NameTypeRequired
tokenstring¦null

Path parameters

NameTypeRequired
jobIdstring
orgIdstring
itemIdstring

Response status

StatusMeaningDescriptionSchema
200OK

List of job histories

inline
400Bad Request

error

WorkflowExceptionDTO

Response details

Status Code 200

JobHistoryRecords

NameTypeRequiredDescription
jobHistory[JobHistory]

Examples

Request

Use dark colors for code blocksCopy
1
2
3
# You can also use wget
curl -X GET /{orgId}/{itemId}/jobs/{jobId}/history \
  -H 'Authorization: Bearer <YOUR_TOKEN>'

Response

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "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
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.