GET ZReport/{SiteID}?StartDate={StartDate}&EndDate={EndDate}
Returns Z Reports between the dates; Max 14Days
Request Information
URI Parameters
| Name | Type | Description | Additional information |
|---|---|---|---|
| SiteID | integer |
The Unique ID Of The Site |
|
| StartDate | date |
Start Date range |
|
| EndDate | date |
End Date range |
Body Parameters
None.
Response Information
Resource Description
Collection of ZReportModel| Name | Type | Description | Additional information |
|---|---|---|---|
| SiteID | integer |
None. |
|
| ZReportID | integer |
None. |
|
| DateTime | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SiteID": 1,
"ZReportID": 2,
"DateTime": "2025-10-29T20:27:27.0803012"
},
{
"SiteID": 1,
"ZReportID": 2,
"DateTime": "2025-10-29T20:27:27.0803012"
}
]
application/xml, text/xml
Sample:
<ArrayOfZReportModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tevalis.API.App.Models">
<ZReportModel>
<DateTime>2025-10-29T20:27:27.0803012</DateTime>
<SiteID>1</SiteID>
<ZReportID>2</ZReportID>
</ZReportModel>
<ZReportModel>
<DateTime>2025-10-29T20:27:27.0803012</DateTime>
<SiteID>1</SiteID>
<ZReportID>2</ZReportID>
</ZReportModel>
</ArrayOfZReportModel>