GET v1/Orders/{orderId}/ShippableOrderRows
Returns orderrows that are ready for fulfilment, but were not yet assigned to an shipment.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId |
The order identifie |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
Collection of OrderRow instances.
ShippableOrderRowsInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId |
Order Identifier |
integer |
None. |
| ShippableOrderRows |
List of orderrows that are ready for fulfilment. |
Collection of ShippableOrderRow |
None. |
Response Formats
application/json, text/json
Sample:
{
"OrderId": 1,
"ShippableOrderRows": [
{
"OrderRowId": 1,
"WarehouseId": 2
},
{
"OrderRowId": 1,
"WarehouseId": 2
}
]
}
application/xml, text/xml
Sample:
<ShippableOrderRowsInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OrderId>1</OrderId>
<ShippableOrderRows>
<Row>
<OrderRowId>1</OrderRowId>
<WarehouseId>2</WarehouseId>
</Row>
<Row>
<OrderRowId>1</OrderRowId>
<WarehouseId>2</WarehouseId>
</Row>
</ShippableOrderRows>
</ShippableOrderRowsInfo>