POST api/v1/StockTally
Request Information
URI Parameters
None.
Body Parameters
POSStockReportInput| Name | Description | Type | Additional information |
|---|---|---|---|
| OutletID | integer |
None. |
|
| StockDate | date |
None. |
|
| ItemID | integer |
None. |
|
| ItemGroupID | integer |
None. |
|
| DispType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"OutletID": 1,
"StockDate": "2025-12-06T09:58:21.1433781+05:30",
"ItemID": 2,
"ItemGroupID": 3,
"DispType": "sample string 4"
}
application/xml, text/xml
Sample:
<POSStockReportInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <DispType>sample string 4</DispType> <ItemGroupID>3</ItemGroupID> <ItemID>2</ItemID> <OutletID>1</OutletID> <StockDate>2025-12-06T09:58:21.1433781+05:30</StockDate> </POSStockReportInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |