GET v1/Warehouses/{warehouseId}

Get detailed information about a Warehouse.

Request Information

Requires Authorization!

URI Parameters

NameDescriptionTypeAdditional information
warehouseId

The id of the Warehouse.

integer

Required.

Body Parameters

None.

Response Information

Resource Description

The Warehouse object.


Warehouse
NameDescriptionTypeAdditional information
Priority

Gets or sets the priority.

integer

Required

CanPick

Gets or sets a value indicating whether this instance can pick.

boolean

Required

ShopOwnerId

Gets or sets the shop owner identifier.

integer

Required

Id

Gets or sets the identifier.

integer

Required

Name

Gets or sets the name.

string

Required

Max length: 50

Response Formats

application/json, text/json

Sample:
{
  "Priority": 1,
  "CanPick": true,
  "ShopOwnerId": 3,
  "Id": 4,
  "Name": "sample string 5"
}

application/xml, text/xml

Sample:
<Warehouse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>4</Id>
  <Name>sample string 5</Name>
  <Priority>1</Priority>
  <CanPick>true</CanPick>
  <ShopOwnerId>3</ShopOwnerId>
</Warehouse>