GET api/Report/GetDayWiseReport?StartDate={StartDate}&EndDate={EndDate}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
StartDate | date |
Required |
|
EndDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DayWiseReportFlatName | Description | Type | Additional information |
---|---|---|---|
TotalIn | integer |
None. |
|
TotalOut | integer |
None. |
|
TotalCollection | decimal number |
None. |
|
Date | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "TotalIn": 1, "TotalOut": 2, "TotalCollection": 3.0, "Date": "2025-09-22T04:34:59.9467189+00:00" }, { "TotalIn": 1, "TotalOut": 2, "TotalCollection": 3.0, "Date": "2025-09-22T04:34:59.9467189+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfDayWiseReportFlat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EasyParking.Entities.FlatModels"> <DayWiseReportFlat> <Date>2025-09-22T04:34:59.9467189+00:00</Date> <TotalCollection>3</TotalCollection> <TotalIn>1</TotalIn> <TotalOut>2</TotalOut> </DayWiseReportFlat> <DayWiseReportFlat> <Date>2025-09-22T04:34:59.9467189+00:00</Date> <TotalCollection>3</TotalCollection> <TotalIn>1</TotalIn> <TotalOut>2</TotalOut> </DayWiseReportFlat> </ArrayOfDayWiseReportFlat>