API Guide

Attribute Description
Progress Percentage of completion.
StartTime The start time of job execution.
EndTime The end time of job execution.
Schedule Job schedule (cron string).
State Indicates whether the job is enabled or disabled.
LastUpdatedTime Timestamp when the job-execution history was last updated.
ExecutedBy Details of who executed the job.
JobId Job associated with the execution history.
JobStatus Job execution history detail completion status.
Links Link to access details of all execution histories.
/api/JobService/Jobs(Id)/ExecutionHistories(Id)
This URI represents the execution history details for a job.
GET method for ExecutionHistories(Id)
This method returns the execution history details for a specific execution history.
Description
Returns details of a specific execution history.
Privilege VIEW
HTTP response
codes
200
Example response
body
{
"@odata.context": "/api/
$metadata#Collection(JobService.ExecutionHistoryDetail)",
"@odata.count": 2,
"value":
[
{
"@odata.type": "#JobService.ExecutionHistoryDetail",
"@odata.id": "/api/JobService/Jobs(10016)/ExecutionHistories(18683)/
ExecutionHistoryDetails(7138)",
"Id": 7138,
"Progress": "100",
"StartTime": "2018-09-14 13:00:00.324",
"EndTime": "2018-09-14 13:00:29.728",
"Key": "Sled-1",
"Value": "Running\nCompleted",
"ExecutionHistoryId": 18683,
"JobStatus":
{
"@odata.type": "#JobService.JobStatus",
"Id": 2060,
"Name": "Completed"
}
},
{
"@odata.type": "#JobService.ExecutionHistoryDetail",
"@odata.id": "/api/JobService/Jobs(10016)/ExecutionHistories(18683)/
ExecutionHistoryDetails(7137)",
"Id": 7137,
"Progress": "100",
"StartTime": "2018-09-14 13:00:00.324",
"EndTime": "2018-09-14 13:00:11.948",
"Key": "MX-MSMDNH1",
"Value": "Running\nCompleted",
Monitor
323