POST api/v1/essentials/stockamounts
Gets the stock amounts
Request Information
URI Parameters
None.
Body Parameters
GetCurrentStockAmountsParameterName | 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.
GetCurrentStockAmountsResultName | 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": "864c6208-e9bf-47ca-a61a-d94d4325c849", "VariationIdentifier": "bda413f0-f7f3-44a4-be26-b188062b5fbf", "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": "864c6208-e9bf-47ca-a61a-d94d4325c849", "VariationIdentifier": "bda413f0-f7f3-44a4-be26-b188062b5fbf", "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>864c6208-e9bf-47ca-a61a-d94d4325c849</ProductIdentifier> <StockAmountTotalAmount>7</StockAmountTotalAmount> <StockAmountTotalUnit>sample string 8</StockAmountTotalUnit> <StorageAreaName>sample string 9</StorageAreaName> <VariationIdentifier>bda413f0-f7f3-44a4-be26-b188062b5fbf</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>864c6208-e9bf-47ca-a61a-d94d4325c849</ProductIdentifier> <StockAmountTotalAmount>7</StockAmountTotalAmount> <StockAmountTotalUnit>sample string 8</StockAmountTotalUnit> <StorageAreaName>sample string 9</StorageAreaName> <VariationIdentifier>bda413f0-f7f3-44a4-be26-b188062b5fbf</VariationIdentifier> </StockAmountItem> </StockAmounts> </GetCurrentStockAmountsResult>