POST api/SystemApi/AddSingleStoreStock
Request Information
URI Parameters
None.
Body Parameters
Store_Stock| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Store_Id | integer |
None. |
|
| Product_Id | integer |
None. |
|
| Product_Name | string |
None. |
|
| QTY | string |
None. |
|
| Unit | string |
None. |
|
| Barcode | string |
None. |
|
| Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Store_Id": 2,
"Product_Id": 3,
"Product_Name": "sample string 4",
"QTY": "sample string 5",
"Unit": "sample string 6",
"Barcode": "sample string 7",
"Note": "sample string 8"
}
application/xml, text/xml
Sample:
<Store_Stock xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlsamanodyPosApi.Models"> <Barcode>sample string 7</Barcode> <Id>1</Id> <Note>sample string 8</Note> <Product_Id>3</Product_Id> <Product_Name>sample string 4</Product_Name> <QTY>sample string 5</QTY> <Store_Id>2</Store_Id> <Unit>sample string 6</Unit> </Store_Stock>
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.