GET v1/Warehouses/Locations/{warehouseLocationId}
Get detailed information about a WarehouseLocation.
Request Information
Requires Authorization!
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
warehouseLocationId |
The id of the WarehouseLocation. |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
The WarehouseLocation object.
WarehouseLocation
Name | Description | Type | Additional information |
---|---|---|---|
Aisle |
Gets or sets the aisle. |
string |
Max length: 20 |
Bay |
Gets or sets the bay. |
string |
Max length: 20 |
Shelf |
Gets or sets the shelf. |
string |
Max length: 20 |
Bin |
Gets or sets the bin. |
string |
Max length: 20 |
Priority |
Gets or sets the priority. |
integer |
Required |
CanPick |
Gets or sets a value indicating whether this instance can pick. |
boolean |
Required |
Id |
Gets or sets the identifier. |
integer |
Required |
Name |
Gets or sets the name. |
string |
Required Max length: 80 |
WarehouseId |
Gets or sets the warehouse identifier. |
integer |
Required |
Response Formats
application/json, text/json
Sample:
{ "Aisle": "sample string 1", "Bay": "sample string 2", "Shelf": "sample string 3", "Bin": "sample string 4", "Priority": 5, "CanPick": true, "Id": 7, "Name": "sample string 8", "WarehouseId": 9 }
application/xml, text/xml
Sample:
<WarehouseLocation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>7</Id> <Name>sample string 8</Name> <WarehouseId>9</WarehouseId> <Aisle>sample string 1</Aisle> <Bay>sample string 2</Bay> <Shelf>sample string 3</Shelf> <Bin>sample string 4</Bin> <Priority>5</Priority> <CanPick>true</CanPick> </WarehouseLocation>