GET api/ic/locations?syncStamp={syncStamp}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
syncStamp | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of LocationName | Description | Type | Additional information |
---|---|---|---|
LocationCode | string |
None. |
|
LocationName | string |
None. |
|
DepartmentCode | string |
None. |
|
BranchCode | string |
None. |
|
Inactive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "LocationCode": "sample string 1", "LocationName": "sample string 2", "DepartmentCode": "sample string 3", "BranchCode": "sample string 4", "Inactive": true }, { "LocationCode": "sample string 1", "LocationName": "sample string 2", "DepartmentCode": "sample string 3", "BranchCode": "sample string 4", "Inactive": true } ]
application/xml, text/xml
Sample:
<ArrayOfLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccredoWeb.Model.IC"> <Location> <BranchCode>sample string 4</BranchCode> <DepartmentCode>sample string 3</DepartmentCode> <Inactive>true</Inactive> <LocationCode>sample string 1</LocationCode> <LocationName>sample string 2</LocationName> </Location> <Location> <BranchCode>sample string 4</BranchCode> <DepartmentCode>sample string 3</DepartmentCode> <Inactive>true</Inactive> <LocationCode>sample string 1</LocationCode> <LocationName>sample string 2</LocationName> </Location> </ArrayOfLocation>