API Guide

Table Of Contents
HTTP response
codes
200
Example
response body
{
"@odata.context": "/api/$metadata#JobService.JobStatus/$entity",
"@odata.type": "#JobService.JobStatus",
"@odata.id": "/api/JobService/JobStatuses(2030)",
"Id": 2030,
"Name": "Queued"
}
Table 126. Attributes
Attribute Description
Id ID of the job status.
Name Name of the job status.
/api/JobService/JobTypes
This URI represents all the job types.
GET method for JobTypes
This method returns the details of all the job types.
Description
Returns details of all job types.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "/api/$metadata#Collection(JobService.JobType)",
"@odata.count": 15,
"value":
[
{
"@odata.type": "#JobService.JobType",
"@odata.id": "/api/JobService/JobTypes(3)",
"Id": 3,
"Name": "DeviceAction_Task",
"Internal": false
},
{
"@odata.type": "#JobService.JobType",
"@odata.id": "/api/JobService/JobTypes(5)",
"Id": 5,
"Name": "Update_Task",
"Internal": false
},
{
"@odata.type": "#JobService.JobType",
"@odata.id": "/api/JobService/JobTypes(8)",
"Id": 8,
"Name": "Inventory_Task",
"Internal": false
},
{
"@odata.type": "#JobService.JobType",
"@odata.id": "/api/JobService/JobTypes(15)",
"Id": 15,
Monitor
371