POST api/v1/Product/ReservationList
Gets the stock amounts
Request Information
URI Parameters
None.
Body Parameters
GetStockReservationListParameter| Name | Description | Type | Additional information |
|---|---|---|---|
| LocationName |
The name of the storage location the data is requested. When location not exists, an error will be thrown |
string |
None. |
| Limit |
The amount of rows requested per page. Default 50 |
integer |
None. |
| Page |
The requested page related to the limit. default 1 |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"LocationName": "sample string 1",
"Limit": 2,
"Page": 3
}
application/xml, text/xml
Sample:
<GetStockReservationListParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromotionalOffice.WebApi.Models.Products"> <Limit>2</Limit> <LocationName>sample string 1</LocationName> <Page>3</Page> </GetStockReservationListParameter>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of stock amount items.
GetStockReservationListResult| Name | Description | Type | Additional information |
|---|---|---|---|
| StockAmounts |
List of found reservations |
Collection of StockReservationItem |
None. |
Response Formats
application/json, text/json
Sample:
{
"StockAmounts": [
{
"ArticleOrderNumber": "sample string 1",
"OwnArticleNumber": "sample string 2",
"ProductIdentifier": "d48fd8a2-ac4c-41fb-ad33-9876c32db4f2",
"ReservatedAmountTotalAmount": 4.0,
"ReservatedAmountTotalUnit": "sample string 5",
"VariationIdentifier": "c4fb8bab-ed40-44b2-8005-60b133905c07"
},
{
"ArticleOrderNumber": "sample string 1",
"OwnArticleNumber": "sample string 2",
"ProductIdentifier": "d48fd8a2-ac4c-41fb-ad33-9876c32db4f2",
"ReservatedAmountTotalAmount": 4.0,
"ReservatedAmountTotalUnit": "sample string 5",
"VariationIdentifier": "c4fb8bab-ed40-44b2-8005-60b133905c07"
}
]
}
application/xml, text/xml
Sample:
<GetStockReservationListResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromotionalOffice.WebApi.Models.Products">
<StockAmounts>
<GetStockReservationListResult.StockReservationItem>
<ArticleOrderNumber>sample string 1</ArticleOrderNumber>
<OwnArticleNumber>sample string 2</OwnArticleNumber>
<ProductIdentifier>d48fd8a2-ac4c-41fb-ad33-9876c32db4f2</ProductIdentifier>
<ReservatedAmountTotalAmount>4</ReservatedAmountTotalAmount>
<ReservatedAmountTotalUnit>sample string 5</ReservatedAmountTotalUnit>
<VariationIdentifier>c4fb8bab-ed40-44b2-8005-60b133905c07</VariationIdentifier>
</GetStockReservationListResult.StockReservationItem>
<GetStockReservationListResult.StockReservationItem>
<ArticleOrderNumber>sample string 1</ArticleOrderNumber>
<OwnArticleNumber>sample string 2</OwnArticleNumber>
<ProductIdentifier>d48fd8a2-ac4c-41fb-ad33-9876c32db4f2</ProductIdentifier>
<ReservatedAmountTotalAmount>4</ReservatedAmountTotalAmount>
<ReservatedAmountTotalUnit>sample string 5</ReservatedAmountTotalUnit>
<VariationIdentifier>c4fb8bab-ed40-44b2-8005-60b133905c07</VariationIdentifier>
</GetStockReservationListResult.StockReservationItem>
</StockAmounts>
</GetStockReservationListResult>