GET warehousezones/{warehouseZoneID}

Returns information about a single Warehouse Zone

Request Information

URI Parameters

NameDescriptionTypeAdditional information
warehouseZoneID ID of the Warehouse integer Required

Body Parameters

None.

Response Information

Resource Description

Returns information about a single Warehouse Zone

WarehouseZoneModel
NameDescriptionTypeAdditional information
WarehouseZoneID The ID for the WarehouseZone integer Required
Name The Warehouse Zone Name string None.
Warehouse The warehouse for the WarehouseZone WarehouseBaseModel None.

Response Formats

application/json, text/json

Sample:
{
  "WarehouseZoneID": 1,
  "Name": "WZ1",
  "Warehouse": {
    "WarehouseName": "My Warehouse",
    "WarehouseGuid": "4daf87b6-6af4-430a-9672-6eadaeffdf7e",
    "WarehouseID": 1
  }
}

application/xml, text/xml

Sample:
<WarehouseZoneModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <WarehouseZoneID>1</WarehouseZoneID>
  <Name>WZ1</Name>
  <Warehouse>
    <WarehouseName>My Warehouse</WarehouseName>
    <WarehouseGuid>4daf87b6-6af4-430a-9672-6eadaeffdf7e</WarehouseGuid>
    <WarehouseID>1</WarehouseID>
  </Warehouse>
</WarehouseZoneModel>