API Guide

Table Of Contents
},
{
"@odata.type": "#JobService.JobType",
"@odata.id": "/api/JobService/JobTypes(42)",
"Id": 42,
"Name": "QuickDeploy_Task",
"Internal": false
}
]
}
Table 127. Attributes
Attribute Description
Id ID of the job type.
Name Name of the job type.
Internal Indicates if the job is internal.
/api/JobService/JobTypes(Id)
This URI represents the details of a job type.
GET method for JobTypes(Id)
This method returns the details of a specific job type.
Description
Returns details of a job type.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "/api/$metadata#JobService.JobType/$entity",
"@odata.type": "#JobService.JobType",
"@odata.id": "/api/JobService/JobTypes(5)",
"Id": 5,
"Name": "Update_Task",
"Internal": false
}
Table 128. Attributes
Attribute Description
Id ID of the job type.
Name Name of the job type.
Internal Indicates whether the job is internal.
Monitor 373