POST api/resto/liquorstock_update
Request Information
URI Parameters
None.
Body Parameters
LiquorStockTransModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Tran_ID | integer |
None. |
|
| Org_ID | integer |
None. |
|
| TranDate | date |
None. |
|
| TranType | string |
None. |
|
| Category_ID | integer |
None. |
|
| Item_ID | integer |
None. |
|
| Size_ID | integer |
None. |
|
| Qty | decimal number |
None. |
|
| Rate | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"Tran_ID": 1,
"Org_ID": 2,
"TranDate": "2026-02-01T21:48:30.9207377+00:00",
"TranType": "sample string 4",
"Category_ID": 5,
"Item_ID": 6,
"Size_ID": 7,
"Qty": 8.0,
"Rate": 9.0
}
application/xml, text/xml
Sample:
<resto.LiquorStockTransModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Resto_Soft"> <Category_ID>5</Category_ID> <Item_ID>6</Item_ID> <Org_ID>2</Org_ID> <Qty>8</Qty> <Rate>9</Rate> <Size_ID>7</Size_ID> <TranDate>2026-02-01T21:48:30.9207377+00:00</TranDate> <TranType>sample string 4</TranType> <Tran_ID>1</Tran_ID> </resto.LiquorStockTransModel>
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.