GET api/MasterConfig/DeliveryFare/GetAreaPointDDListByZoneID?ZoneID={ZoneID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ZoneID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AreaPointDD| Name | Description | Type | Additional information |
|---|---|---|---|
| AreaPointID | integer |
None. |
|
| AreaPointName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AreaPointID": 1,
"AreaPointName": "sample string 2"
},
{
"AreaPointID": 1,
"AreaPointName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfAreaPointDD xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operations.CustomModels">
<AreaPointDD>
<AreaPointID>1</AreaPointID>
<AreaPointName>sample string 2</AreaPointName>
</AreaPointDD>
<AreaPointDD>
<AreaPointID>1</AreaPointID>
<AreaPointName>sample string 2</AreaPointName>
</AreaPointDD>
</ArrayOfAreaPointDD>