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 ZReportModelName | 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": "2024-11-21T06:20:52.9645724+00:00" }, { "SiteID": 1, "ZReportID": 2, "DateTime": "2024-11-21T06:20:52.9645724+00:00" } ]
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>2024-11-21T06:20:52.9645724+00:00</DateTime> <SiteID>1</SiteID> <ZReportID>2</ZReportID> </ZReportModel> <ZReportModel> <DateTime>2024-11-21T06:20:52.9645724+00:00</DateTime> <SiteID>1</SiteID> <ZReportID>2</ZReportID> </ZReportModel> </ArrayOfZReportModel>