GET pickwaves/{pickwaveId}/products
Returns the list of Products against a Pickwave record for a given Pickwave Id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pickwaveId | integer | Required |
Body Parameters
None.
Response Information
Resource Description
Returns the list of Products against a Pickwave record for a given Pickwave Id
Collection of PickwaveProductModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderedProductName | The product name for the ordered product. | string | None. |
| OrderedProductSKU | The product SKU for the ordered product. | string | None. |
| ProductID | The StoreFeeder ID for the product. | integer | None. |
| QuantityAllocated | The quantity of product allocated. | integer | None. |
| SKU | The StoreFeeder SKU for the product. | string | None. |
| StockLocationReference | The reference for the stock location. | string | None. |
Response Formats
application/json, text/json
Sample:
[
{
"OrderedProductName": "sample string 1",
"OrderedProductSKU": "sample string 2",
"ProductID": 3,
"QuantityAllocated": 4,
"SKU": "sample string 5",
"StockLocationReference": "sample string 6"
},
{
"OrderedProductName": "sample string 1",
"OrderedProductSKU": "sample string 2",
"ProductID": 3,
"QuantityAllocated": 4,
"SKU": "sample string 5",
"StockLocationReference": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfPickwaveProductModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<PickwaveProductModel>
<OrderedProductName>sample string 1</OrderedProductName>
<OrderedProductSku>sample string 2</OrderedProductSku>
<ProductId>3</ProductId>
<QuantityAllocated>4</QuantityAllocated>
<Sku>sample string 5</Sku>
<StockLocationReference>sample string 6</StockLocationReference>
</PickwaveProductModel>
<PickwaveProductModel>
<OrderedProductName>sample string 1</OrderedProductName>
<OrderedProductSku>sample string 2</OrderedProductSku>
<ProductId>3</ProductId>
<QuantityAllocated>4</QuantityAllocated>
<Sku>sample string 5</Sku>
<StockLocationReference>sample string 6</StockLocationReference>
</PickwaveProductModel>
</ArrayOfPickwaveProductModel>