PUT v1/Warehouses/Locations
Update an existing WarehouseLocation.
Request Information
URI Parameters
None.
Body Parameters
The WarehouseLocation changes object
WarehouseLocationChanges| 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 |
| LocationType |
Gets or sets type of location. Default is Pick. |
LocationTypeEnum |
None. |
| 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 |
Request 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,
"LocationType": 0,
"Id": 7,
"Name": "sample string 8",
"WarehouseId": 9
}
application/xml, text/xml
Sample:
<WarehouseLocationChanges 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> <LocationType>Pick</LocationType> </WarehouseLocationChanges>
Response Information
Resource Description
The HttpResponseMessage object.
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |