GET api/CustomerLocationDetails?SessionID={SessionID}&LocationID={LocationID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SessionID | string |
Required |
|
| LocationID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
CustomerLocationDetailReturnObj| Name | Description | Type | Additional information |
|---|---|---|---|
| ReturnCode | integer |
None. |
|
| ReturnMessage | string |
None. |
|
| LocationName | string |
None. |
|
| Address1 | string |
None. |
|
| Address2 | string |
None. |
|
| City | string |
None. |
|
| State | string |
None. |
|
| ZipCode | string |
None. |
|
| Phone | string |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| SalesTaxCounty | string |
None. |
|
| SalesTaxRate | decimal number |
None. |
|
| ResaleCertNumber | string |
None. |
|
| DeliveryNotes | string |
None. |
|
| OrderMinimum | decimal number |
None. |
|
| PaymentTerms | string |
None. |
|
| AllowSunday | boolean |
None. |
|
| AllowMonday | boolean |
None. |
|
| AllowTuesday | boolean |
None. |
|
| AllowWednesday | boolean |
None. |
|
| AllowThursday | boolean |
None. |
|
| AllowFriday | boolean |
None. |
|
| AllowSaturday | boolean |
None. |
|
| SundayFee | decimal number |
None. |
|
| MondayFee | decimal number |
None. |
|
| TuesdayFee | decimal number |
None. |
|
| WednesdayFee | decimal number |
None. |
|
| ThursdayFee | decimal number |
None. |
|
| FridayFee | decimal number |
None. |
|
| SaturdayFee | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"ReturnCode": 1,
"ReturnMessage": "sample string 2",
"LocationName": "sample string 3",
"Address1": "sample string 4",
"Address2": "sample string 5",
"City": "sample string 6",
"State": "sample string 7",
"ZipCode": "sample string 8",
"Phone": "sample string 9",
"Latitude": 10.0,
"Longitude": 11.0,
"SalesTaxCounty": "sample string 12",
"SalesTaxRate": 13.0,
"ResaleCertNumber": "sample string 14",
"DeliveryNotes": "sample string 15",
"OrderMinimum": 16.0,
"PaymentTerms": "sample string 17",
"AllowSunday": true,
"AllowMonday": true,
"AllowTuesday": true,
"AllowWednesday": true,
"AllowThursday": true,
"AllowFriday": true,
"AllowSaturday": true,
"SundayFee": 25.0,
"MondayFee": 26.0,
"TuesdayFee": 27.0,
"WednesdayFee": 28.0,
"ThursdayFee": 29.0,
"FridayFee": 30.0,
"SaturdayFee": 31.0
}
application/xml, text/xml
Sample:
<CustomerLocationDetailsController.CustomerLocationDetailReturnObj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileAPI"> <Address1>sample string 4</Address1> <Address2>sample string 5</Address2> <AllowFriday>true</AllowFriday> <AllowMonday>true</AllowMonday> <AllowSaturday>true</AllowSaturday> <AllowSunday>true</AllowSunday> <AllowThursday>true</AllowThursday> <AllowTuesday>true</AllowTuesday> <AllowWednesday>true</AllowWednesday> <City>sample string 6</City> <DeliveryNotes>sample string 15</DeliveryNotes> <FridayFee>30</FridayFee> <Latitude>10</Latitude> <LocationName>sample string 3</LocationName> <Longitude>11</Longitude> <MondayFee>26</MondayFee> <OrderMinimum>16</OrderMinimum> <PaymentTerms>sample string 17</PaymentTerms> <Phone>sample string 9</Phone> <ResaleCertNumber>sample string 14</ResaleCertNumber> <ReturnCode>1</ReturnCode> <ReturnMessage>sample string 2</ReturnMessage> <SalesTaxCounty>sample string 12</SalesTaxCounty> <SalesTaxRate>13</SalesTaxRate> <SaturdayFee>31</SaturdayFee> <State>sample string 7</State> <SundayFee>25</SundayFee> <ThursdayFee>29</ThursdayFee> <TuesdayFee>27</TuesdayFee> <WednesdayFee>28</WednesdayFee> <ZipCode>sample string 8</ZipCode> </CustomerLocationDetailsController.CustomerLocationDetailReturnObj>