POST api/resto/liquor_sale_stock
Request Information
URI Parameters
None.
Body Parameters
SaleStockRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Org_ID | integer |
None. |
|
| TranDate | date |
None. |
|
| Category_ID | integer |
None. |
|
| Item_ID | integer |
None. |
|
| Size_ID | integer |
None. |
|
| Qty | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Org_ID": 1,
"TranDate": "2026-02-01T21:49:23.9406977+00:00",
"Category_ID": 3,
"Item_ID": 4,
"Size_ID": 5,
"Qty": 6
}
application/xml, text/xml
Sample:
<resto.SaleStockRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Resto_Soft"> <Category_ID>3</Category_ID> <Item_ID>4</Item_ID> <Org_ID>1</Org_ID> <Qty>6</Qty> <Size_ID>5</Size_ID> <TranDate>2026-02-01T21:49:23.9406977+00:00</TranDate> </resto.SaleStockRequest>
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.