POST api/v1/essentials/stockamounts
Gets the stock amounts
Request Information
URI Parameters
None.
Body Parameters
GetCurrentStockAmountsParameter| Name | Description | Type | Additional information |
|---|---|---|---|
| LocationName |
The name of the storage location the data is requested. When location not exists, the result will be empty |
string |
None. |
| Limit |
The amount of rows requested per page. Default 500 |
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:
<GetCurrentStockAmountsParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://promotionaloffice.promidata.com/2012/08/08"> <Limit>2</Limit> <LocationName>sample string 1</LocationName> <Page>3</Page> </GetCurrentStockAmountsParameter>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of stock amount items.
GetCurrentStockAmountsResult| Name | Description | Type | Additional information |
|---|---|---|---|
| StockAmounts | Collection of StockAmountItem |
None. |
Response Formats
application/json, text/json
Sample:
{
"StockAmounts": [
{
"OrderNumber": "sample string 1",
"OwnArticleNumber": "sample string 2",
"ProductIdentifier": "8ead79b2-9ba8-43d7-bc2f-e8edf618d2a4",
"VariationIdentifier": "6409e193-385b-469d-ad90-1091f0195788",
"Option1Key": "sample string 5",
"Option2Key": "sample string 6",
"StockAmountTotalAmount": 7.0,
"StockAmountTotalUnit": "sample string 8",
"StorageAreaName": "sample string 9",
"HasBetterment": true
},
{
"OrderNumber": "sample string 1",
"OwnArticleNumber": "sample string 2",
"ProductIdentifier": "8ead79b2-9ba8-43d7-bc2f-e8edf618d2a4",
"VariationIdentifier": "6409e193-385b-469d-ad90-1091f0195788",
"Option1Key": "sample string 5",
"Option2Key": "sample string 6",
"StockAmountTotalAmount": 7.0,
"StockAmountTotalUnit": "sample string 8",
"StorageAreaName": "sample string 9",
"HasBetterment": true
}
]
}
application/xml, text/xml
Sample:
<GetCurrentStockAmountsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://promotionaloffice.promidata.com/2012/08/08">
<StockAmounts>
<StockAmountItem>
<HasBetterment>true</HasBetterment>
<Option1Key>sample string 5</Option1Key>
<Option2Key>sample string 6</Option2Key>
<OrderNumber>sample string 1</OrderNumber>
<OwnArticleNumber>sample string 2</OwnArticleNumber>
<ProductIdentifier>8ead79b2-9ba8-43d7-bc2f-e8edf618d2a4</ProductIdentifier>
<StockAmountTotalAmount>7</StockAmountTotalAmount>
<StockAmountTotalUnit>sample string 8</StockAmountTotalUnit>
<StorageAreaName>sample string 9</StorageAreaName>
<VariationIdentifier>6409e193-385b-469d-ad90-1091f0195788</VariationIdentifier>
</StockAmountItem>
<StockAmountItem>
<HasBetterment>true</HasBetterment>
<Option1Key>sample string 5</Option1Key>
<Option2Key>sample string 6</Option2Key>
<OrderNumber>sample string 1</OrderNumber>
<OwnArticleNumber>sample string 2</OwnArticleNumber>
<ProductIdentifier>8ead79b2-9ba8-43d7-bc2f-e8edf618d2a4</ProductIdentifier>
<StockAmountTotalAmount>7</StockAmountTotalAmount>
<StockAmountTotalUnit>sample string 8</StockAmountTotalUnit>
<StorageAreaName>sample string 9</StorageAreaName>
<VariationIdentifier>6409e193-385b-469d-ad90-1091f0195788</VariationIdentifier>
</StockAmountItem>
</StockAmounts>
</GetCurrentStockAmountsResult>