GET api/MasterConfig/DeliveryFare/DeliveryZoneList?PageNo={PageNo}&PageSize={PageSize}&SearchTerm={SearchTerm}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PageNo

integer

Required

PageSize

integer

Required

SearchTerm

string

Required

Body Parameters

None.

Response Information

Resource Description

DeliveryZonesAPIVM
NameDescriptionTypeAdditional information
DeliveryZoneList

Collection of DeliveryZones

None.

TotalRecords

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "DeliveryZoneList": [
    {
      "DeliveryZoneID": 1,
      "DeliveryZoneName": "sample string 2",
      "CentreLatitude": "sample string 3",
      "CentreLongitude": "sample string 4",
      "RadiusInKm": 5.0
    },
    {
      "DeliveryZoneID": 1,
      "DeliveryZoneName": "sample string 2",
      "CentreLatitude": "sample string 3",
      "CentreLongitude": "sample string 4",
      "RadiusInKm": 5.0
    }
  ],
  "TotalRecords": 1
}

application/xml, text/xml

Sample:
<DeliveryZonesAPIVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operations.CustomModels">
  <DeliveryZoneList>
    <DeliveryZones>
      <CentreLatitude>sample string 3</CentreLatitude>
      <CentreLongitude>sample string 4</CentreLongitude>
      <DeliveryZoneID>1</DeliveryZoneID>
      <DeliveryZoneName>sample string 2</DeliveryZoneName>
      <RadiusInKm>5</RadiusInKm>
    </DeliveryZones>
    <DeliveryZones>
      <CentreLatitude>sample string 3</CentreLatitude>
      <CentreLongitude>sample string 4</CentreLongitude>
      <DeliveryZoneID>1</DeliveryZoneID>
      <DeliveryZoneName>sample string 2</DeliveryZoneName>
      <RadiusInKm>5</RadiusInKm>
    </DeliveryZones>
  </DeliveryZoneList>
  <TotalRecords>1</TotalRecords>
</DeliveryZonesAPIVM>