GET api/SQLReporting/TotalSupervisorTasks?venueID={venueID}&startDate={startDate}&endDate={endDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| venueID | integer |
Required |
|
| startDate | date |
Required |
|
| endDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SupervisorInspectionTxDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| SupervisorAllocatedInspectionID | integer |
None. |
|
| CustomerInspectionItemID | integer |
None. |
|
| Image | Collection of byte |
None. |
|
| FilePath | string |
None. |
|
| Date | date |
None. |
|
| Comments | string |
None. |
|
| Completed | boolean |
None. |
|
| TotalJobsComplete | integer |
None. |
|
| TotalComplete | integer |
None. |
|
| TotalIncomplete | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"SupervisorAllocatedInspectionID": 2,
"CustomerInspectionItemID": 3,
"Image": "QEA=",
"FilePath": "sample string 4",
"Date": "2025-12-12T16:55:46.9237873+02:00",
"Comments": "sample string 6",
"Completed": true,
"TotalJobsComplete": 8,
"TotalComplete": 9,
"TotalIncomplete": 10
},
{
"ID": 1,
"SupervisorAllocatedInspectionID": 2,
"CustomerInspectionItemID": 3,
"Image": "QEA=",
"FilePath": "sample string 4",
"Date": "2025-12-12T16:55:46.9237873+02:00",
"Comments": "sample string 6",
"Completed": true,
"TotalJobsComplete": 8,
"TotalComplete": 9,
"TotalIncomplete": 10
}
]
application/xml, text/xml
Sample:
<ArrayOfSupervisorInspectionTxDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
<SupervisorInspectionTxDTO>
<Comments>sample string 6</Comments>
<Completed>true</Completed>
<CustomerInspectionItemID>3</CustomerInspectionItemID>
<Date>2025-12-12T16:55:46.9237873+02:00</Date>
<FilePath>sample string 4</FilePath>
<ID>1</ID>
<Image>QEA=</Image>
<SupervisorAllocatedInspectionID>2</SupervisorAllocatedInspectionID>
<TotalComplete>9</TotalComplete>
<TotalIncomplete>10</TotalIncomplete>
<TotalJobsComplete>8</TotalJobsComplete>
</SupervisorInspectionTxDTO>
<SupervisorInspectionTxDTO>
<Comments>sample string 6</Comments>
<Completed>true</Completed>
<CustomerInspectionItemID>3</CustomerInspectionItemID>
<Date>2025-12-12T16:55:46.9237873+02:00</Date>
<FilePath>sample string 4</FilePath>
<ID>1</ID>
<Image>QEA=</Image>
<SupervisorAllocatedInspectionID>2</SupervisorAllocatedInspectionID>
<TotalComplete>9</TotalComplete>
<TotalIncomplete>10</TotalIncomplete>
<TotalJobsComplete>8</TotalJobsComplete>
</SupervisorInspectionTxDTO>
</ArrayOfSupervisorInspectionTxDTO>