API Guide

Table 111. Attributes
Attribute Description
Id ID of the job.
JobName Name for the job.
JobDescription Description for the job.
Schedule The schedule to start the job.
State Enabled state for the job. It should be enabled.
JobType Id of job type.
JobName Name of the job type.
DELETE method for Jobs(Id)
This method deletes a specific job.
Description Deletes a job.
Privilege JOB_MANAGEMENT
HTTP response
codes
204
Example
Input:
Output:
Table 112. 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
Input:
Output:
{
"@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"
},
Monitor 249