PUT v1/Shipments/{shipmentId}/SetRowsPicked
Marks orderrows as picked
Request Information
Requires Authorization!
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
shipmentId |
The Shipment ID |
integer |
Required. |
Body Parameters
Collection of details of how many items are retrieved for an OrderRow/WarehouseLocation
ShipmentPickInfoName | Description | Type | Additional information |
---|---|---|---|
IncrementalQuantities |
If true, quantities provided are added to any previous picked quantities for this order shipment. If false, any previous set picked quantities are removed. |
boolean |
None. |
PickRows | Collection of ShipmentPickOrderRowInfo |
None. |
Request Formats
application/json, text/json
Sample:
{ "IncrementalQuantities": true, "PickRows": [ { "OrderRowId": 1, "WarehouseLocationId": 2, "QuantityPicked": 3 }, { "OrderRowId": 1, "WarehouseLocationId": 2, "QuantityPicked": 3 } ] }
application/xml, text/xml
Sample:
<ShipmentPickInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <IncrementalQuantities>true</IncrementalQuantities> <PickRows> <PickRow> <OrderRowId>1</OrderRowId> <WarehouseLocationId>2</WarehouseLocationId> <QuantityPicked>3</QuantityPicked> </PickRow> <PickRow> <OrderRowId>1</OrderRowId> <WarehouseLocationId>2</WarehouseLocationId> <QuantityPicked>3</QuantityPicked> </PickRow> </PickRows> </ShipmentPickInfo>
Response Information
Response Codes
- OK (200)
Resource Description
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. |