API Guide

Table Of Contents
DELETE method for Jobs(Id)
This method deletes a specific job.
Description Deletes a job.
Privilege JOB_MANAGEMENT
HTTP response
codes
204
Table 124. Attributes
Attribute Description
Id ID of the job to be deleted.
/api/JobService/JobStatuses
This URI represents the status of all the jobs.
GET method for JobStatuses
This method returns the status of all the jobs.
Description
Returns status of all the jobs.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "/api/$metadata#Collection(JobService.JobStatus)",
"@odata.count": 12,
"value":
[
{
"@odata.type": "#JobService.JobStatus",
"@odata.id": "/api/JobService/JobStatuses(2020)",
"Id": 2020,
"Name": "Scheduled"
},
{
"@odata.type": "#JobService.JobStatus",
"@odata.id": "/api/JobService/JobStatuses(2030)",
"Id": 2030,
"Name": "Queued"
},
{
"@odata.type": "#JobService.JobStatus",
"@odata.id": "/api/JobService/JobStatuses(2040)",
"Id": 2040,
"Name": "Starting"
},
{
"@odata.type": "#JobService.JobStatus",
"@odata.id": "/api/JobService/JobStatuses(2050)",
"Id": 2050,
"Name": "Running"
},
{
"@odata.type": "#JobService.JobStatus",
"@odata.id": "/api/JobService/JobStatuses(2060)",
"Id": 2060,
"Name": "Completed"
Monitor
369