GET api/externalpicking/stockquantity?productid={productid}&warehouse={warehouse}
Gets product pickable quantity in warehouse. Container quantity is pickable if container classification is Normal, Dump, Taxfree or NULL and batch number is not Broken.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| productid |
for product id |
integer |
Required |
| warehouse |
from warehouse |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
StockQuantityInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| productid |
Identifier of the product which performed the task |
integer |
None. |
| warehouse |
Identifier of the warehouse |
string |
None. |
| totalquantity |
Actual quantity for product |
decimal number |
None. |
| pickingplacequantity |
picking place quantity |
decimal number |
None. |
| pickingplace |
current picking place for product |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"productid": 1,
"warehouse": "sample string 2",
"totalquantity": 3.0,
"pickingplacequantity": 4.0,
"pickingplace": "sample string 5"
}
application/xml, text/xml
Sample:
<StockQuantityInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WMS.WebApiService.DTOs"> <pickingplace>sample string 5</pickingplace> <pickingplacequantity>4</pickingplacequantity> <productid>1</productid> <totalquantity>3</totalquantity> <warehouse>sample string 2</warehouse> </StockQuantityInfo>