POST api/Inventory/ScanOut
Request Information
URI Parameters
None.
Body Parameters
InventoryItem| Name | Description | Type | Additional information |
|---|---|---|---|
| BinId | string |
Required |
|
| ProductId | string |
Required |
|
| Quantity | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"binId": "sample string 1",
"productId": "sample string 2",
"quantity": 3
}
application/xml, text/xml
Sample:
<InventoryItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Klutchn.Poco.Models"> <BinId>sample string 1</BinId> <ProductId>sample string 2</ProductId> <Quantity>3</Quantity> </InventoryItem>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.