POST api/v1/DaySummary
Request Information
URI Parameters
None.
Body Parameters
OnlineSaleInput| Name | Description | Type | Additional information |
|---|---|---|---|
| LocID | integer |
None. |
|
| CompID | integer |
None. |
|
| OnlineID | integer |
None. |
|
| BillType | string |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| Mode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"LocID": 1,
"CompID": 2,
"OnlineID": 3,
"BillType": "sample string 4",
"StartDate": "2025-12-09T02:31:02.690746+05:30",
"EndDate": "2025-12-09T02:31:02.690746+05:30",
"Mode": "sample string 5"
}
application/xml, text/xml
Sample:
<OnlineSaleInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <BillType>sample string 4</BillType> <CompID>2</CompID> <EndDate>2025-12-09T02:31:02.690746+05:30</EndDate> <LocID>1</LocID> <Mode>sample string 5</Mode> <OnlineID>3</OnlineID> <StartDate>2025-12-09T02:31:02.690746+05:30</StartDate> </OnlineSaleInput>
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. |