GET api/Sale/GetMonthalySale?outletId={outletId}&year={year}&month={month}
Get the given month sale by outlet
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
outletId | globally unique identifier |
Required |
|
year | integer |
Required |
|
month | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
MonthlyCategorySaleName | Description | Type | Additional information |
---|---|---|---|
Description | string |
None. |
|
GrandTotal | decimal number |
None. |
|
NetTotal | decimal number |
None. |
|
Categories | Collection of SaleDetail |
None. |
|
DailySales | Collection of SaleDetail |
None. |
|
HourlySales | Collection of SaleDetail |
None. |
|
OutletSales | Collection of OutletSale |
None. |
Response Formats
application/json, text/json
Sample:
{ "Description": "sample string 1", "GrandTotal": 2.0, "NetTotal": 3.0, "Categories": [ { "$id": "2", "GroupName": "sample string 1", "GrossTotal": 2.0, "NetTotal": 3.0, "CreationDate": "2025-04-04T05:32:01.8101493+02:00", "SaleDay": "2025-04-04T05:32:01.8101493+02:00", "SaleHour": 6, "DataType": "sample string 7", "OutletId": "523b61d2-a78c-40c6-bd6a-7f1ea0cf8ab7" }, { "$ref": "2" } ], "DailySales": [ { "$ref": "2" }, { "$ref": "2" } ], "HourlySales": [ { "$ref": "2" }, { "$ref": "2" } ], "OutletSales": [ { "$id": "3", "OutletId": "724a76e9-8ab0-4a29-9a17-164cde9bb303", "SaleDate": "2025-04-04T05:32:01.8101493+02:00", "OutletName": "sample string 3", "GrossTotal": 4.0, "NetTotal": 5.0 }, { "$ref": "3" } ] }