GET api/Sale/GetSaleByMonth?month={month}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
month

integer

Required

Body Parameters

None.

Response Information

Resource Description

ReportViewModel
NameDescriptionTypeAdditional 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": "8376432d-68ed-4277-a934-694e5cde3f81",
        "SaleDate": "2024-05-16T22:08:18.9963327+02: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"
      }
    ]
  }
}