Get the milestones of the specific execution history
get
/iam/governance/selfservice/api/v1/scheduler/jobs/{jobName}/history/{historyID}
Returns a paginated list of milestone details associated with a specific execution history.
Request
Path Parameters
-
historyID: integer
ID of the execution history
-
jobName: string
Name of the job
Response
Supported Media Types
- application/json
200 Response
OK
400 Response
Invalid input
Examples
The following example shows how to retrieve a paginated list of milestone details associated with a specific execution history by submitting the GET request using cURL. The information shown here is against a pseudo system and serves as a prototype.
cURL Example
curl -i -X GET -u username:password / --header 'Accept: application/json' / --header 'Content-Type: application/json' / 'http://pseudo.com/iam/governance/selfservice/api/v1/scheduler/jobs/Catalog Synchronization Job/history/5966/milestones'
Example of Response Body
The following example shows the JSON response for a retrieval request for a list of milestone details associated with a specific execution history:
{ "links": [ { "rel": "self", "href": "pseudo.com/iam/governance/selfservice/api/v1/scheduler/jobs/Catalog%20Synchronization%20Job/history/5966/milestones" }, { "rel": "self", "href": "pseudo.com/iam/governance/selfservice/api/v1/scheduler/jobs/Catalog%20Synchronization%20Job/history/5966/milestones?offset=1&limit=10" }, { "rel": "first", "href": "pseudo.com/iam/governance/selfservice/api/v1/scheduler/jobs/Catalog%20Synchronization%20Job/history/5966/milestones?offset=1&limit=10" } ], "count": 0, "hasMore": false, "totalResult": -1, "milestones": [] }