GET api/WorkRequests/getWorkReqSetting?accountID={accountID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CampusSetting| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| AccountID | integer |
None. |
|
| LocationID | integer |
None. |
|
| SystemSettingID | integer |
None. |
|
| intValue | integer |
None. |
|
| txtValue | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"AccountID": 2,
"LocationID": 3,
"SystemSettingID": 4,
"intValue": 1,
"txtValue": "sample string 5"
},
{
"ID": 1,
"AccountID": 2,
"LocationID": 3,
"SystemSettingID": 4,
"intValue": 1,
"txtValue": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfCampusSetting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
<CampusSetting>
<AccountID>2</AccountID>
<ID>1</ID>
<LocationID>3</LocationID>
<SystemSettingID>4</SystemSettingID>
<intValue>1</intValue>
<txtValue>sample string 5</txtValue>
</CampusSetting>
<CampusSetting>
<AccountID>2</AccountID>
<ID>1</ID>
<LocationID>3</LocationID>
<SystemSettingID>4</SystemSettingID>
<intValue>1</intValue>
<txtValue>sample string 5</txtValue>
</CampusSetting>
</ArrayOfCampusSetting>