GET api/Sale/GetTodaySale
Get current Day sale URL: api/GetTodaySale
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Return Report View model
ReportViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DailySale | DailySale |
None. |
|
| MonthlySale | MonthlySale |
None. |
Response Formats
application/json, text/json
Sample:
{
"DailySale": {
"$id": "2",
"Description": "sample string 1",
"GrandTotal": 2.0,
"NetTotal": 3.0,
"OutletSale": [
{
"$id": "3",
"OutletId": "ef1a2dc4-b8fa-48a0-bd30-967efd2c25c1",
"SaleDate": "2026-02-04T04:13:30.0421277+01:00",
"OutletName": "sample string 3",
"GrossTotal": 4.0,
"NetTotal": 5.0
},
{
"$ref": "3"
}
]
},
"MonthlySale": {
"$id": "4",
"Description": "sample string 1",
"SaleMonth": "sample string 2",
"GrandTotal": 3.0,
"NetTotal": 4.0,
"OutletSale": [
{
"$ref": "3"
},
{
"$ref": "3"
}
]
}
}