GET api/V3/Outlet/GetRegionsWithZone

For a List of All regions and Zones of The Company

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of V3.RegionWithZone
NameDescriptionTypeAdditional information
Region

Region to be assigned to Territory

string

Required

String length: inclusive between 3 and 200

Zone

Zone to be assigened to Territory of Beat

string

Required

String length: inclusive between 3 and 100

Response Formats

application/json, text/json

Sample:
[
  {
    "Region": "sample string 1",
    "Zone": "sample string 2"
  },
  {
    "Region": "sample string 1",
    "Zone": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfRegionWithZone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalApis.V3.Models">
  <RegionWithZone>
    <Region>sample string 1</Region>
    <Zone>sample string 2</Zone>
  </RegionWithZone>
  <RegionWithZone>
    <Region>sample string 1</Region>
    <Zone>sample string 2</Zone>
  </RegionWithZone>
</ArrayOfRegionWithZone>