GET api/Delivery?hotAreaId={hotAreaId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| hotAreaId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Location| Name | Description | Type | Additional information |
|---|---|---|---|
| Lat | decimal number |
None. |
|
| Long | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Lat": 1.0,
"Long": 2.0
},
{
"Lat": 1.0,
"Long": 2.0
}
]
application/xml, text/xml
Sample:
<ArrayOfLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VOOO_MVCAPI.Models.APIResponse">
<Location>
<Lat>1</Lat>
<Long>2</Long>
</Location>
<Location>
<Lat>1</Lat>
<Long>2</Long>
</Location>
</ArrayOfLocation>