POST api/v1/StockCheck
Request Information
URI Parameters
None.
Body Parameters
StockCheckInput| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemID | integer |
None. |
|
| LocID | integer |
None. |
|
| Result | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ItemID": 1,
"LocID": 2,
"Result": 3
}
application/xml, text/xml
Sample:
<StockCheckInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <ItemID>1</ItemID> <LocID>2</LocID> <Result>3</Result> </StockCheckInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
StockCheckModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Qty | decimal number |
None. |
|
| result | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Qty": 1.0,
"result": 2
}
application/xml, text/xml
Sample:
<StockCheckModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <Qty>1</Qty> <result>2</result> </StockCheckModel>