POST v1/SystemSettings/JobTypeList
Request Information
URI Parameters
None.
Body Parameters
JobTypeListRequestName | Description | Type | Additional information |
---|---|---|---|
JobTypeID | integer |
None. |
|
JobTypeDescription | string |
None. |
|
Active | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "JobTypeID": 1, "JobTypeDescription": "sample string 1", "Active": true }
application/xml, text/xml
Sample:
<JobTypeListRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <JobTypeID>1</JobTypeID> <JobTypeDescription>sample string 1</JobTypeDescription> <Active>true</Active> </JobTypeListRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of JobTypeListResponseName | Description | Type | Additional information |
---|---|---|---|
JobTypeID | integer |
None. |
|
JobTypeDescription | string |
None. |
|
Active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "JobTypeID": 1, "JobTypeDescription": "sample string 1", "Active": true }, { "JobTypeID": 1, "JobTypeDescription": "sample string 1", "Active": true } ]
application/xml, text/xml
Sample:
<ArrayOfJobTypeListResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <JobTypeListResponse> <JobTypeID>1</JobTypeID> <JobTypeDescription>sample string 1</JobTypeDescription> <Active>true</Active> </JobTypeListResponse> <JobTypeListResponse> <JobTypeID>1</JobTypeID> <JobTypeDescription>sample string 1</JobTypeDescription> <Active>true</Active> </JobTypeListResponse> </ArrayOfJobTypeListResponse>