GET v1/Warehouses

Get a list with all available Warehouses for the logged in user.

Request Information

Requires Authorization!

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of Warehouse objects.


Collection of WarehouseBasicInfo
NameDescriptionTypeAdditional information
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:
[
  {
    "Id": 1,
    "Name": "sample string 2"
  },
  {
    "Id": 1,
    "Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfWarehouseBasicInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <WarehouseBasicInfo>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </WarehouseBasicInfo>
  <WarehouseBasicInfo>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </WarehouseBasicInfo>
</ArrayOfWarehouseBasicInfo>