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 datetime

Start Date range

EndDate datetime

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 datetime

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SiteID": 1,
    "ZReportID": 2,
    "DateTime": "2026-02-04T00:47:27.613091"
  },
  {
    "SiteID": 1,
    "ZReportID": 2,
    "DateTime": "2026-02-04T00:47:27.613091"
  }
]

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>2026-02-04T00:47:27.613091</DateTime>
    <SiteID>1</SiteID>
    <ZReportID>2</ZReportID>
  </ZReportModel>
  <ZReportModel>
    <DateTime>2026-02-04T00:47:27.613091</DateTime>
    <SiteID>1</SiteID>
    <ZReportID>2</ZReportID>
  </ZReportModel>
</ArrayOfZReportModel>