GET api/General/Home/GetLocationZoneAreaNRefPoint?Lat={Lat}&Lng={Lng}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Lat | string |
Required |
|
| Lng | string |
Required |
Body Parameters
None.
Response Information
Resource Description
LocZoneWithAreaNRefPoint| Name | Description | Type | Additional information |
|---|---|---|---|
| Lat | string |
Required |
|
| Lng | string |
Required |
|
| DeliveryZoneID | integer |
None. |
|
| AreaPointID | integer |
None. |
|
| RefrencePointID | integer |
None. |
|
| DeliveryEnabled | boolean |
None. |
|
| PickupEnabled | boolean |
None. |
|
| ErrMsg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Lat": "sample string 1",
"Lng": "sample string 2",
"DeliveryZoneID": 3,
"AreaPointID": 4,
"RefrencePointID": 5,
"DeliveryEnabled": true,
"PickupEnabled": true,
"ErrMsg": "sample string 8"
}
application/xml, text/xml
Sample:
<LocZoneWithAreaNRefPoint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operations.CustomModels"> <AreaPointID>4</AreaPointID> <DeliveryEnabled>true</DeliveryEnabled> <DeliveryZoneID>3</DeliveryZoneID> <ErrMsg>sample string 8</ErrMsg> <Lat>sample string 1</Lat> <Lng>sample string 2</Lng> <PickupEnabled>true</PickupEnabled> <RefrencePointID>5</RefrencePointID> </LocZoneWithAreaNRefPoint>