GET CPS/SchoolDailyCOVIDSurveillance?SchoolID={SchoolID}&StartDate={StartDate}&EndDate={EndDate}
Returns covid testing counts for 2020-2021 school year, totaled by school.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SchoolID | integer |
Default value is 0 |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
Body Parameters
None.
Response Information
Resource Description
COVIDDailySchoolSurveillance| Name | Description | Type | Additional information |
|---|---|---|---|
| SchoolID | integer |
None. |
|
| SchoolShortName | string |
None. |
|
| TestingDate | date |
None. |
|
| TotalPerformedTestCount | integer |
None. |
|
| PresumedPositiveCount | integer |
None. |
|
| AbsentCount | integer |
None. |
|
| RefusedCount | integer |
None. |
|
| StatusName | string |
None. |
|
| NetworkName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"SchoolID": 1,
"SchoolShortName": "sample string 2",
"TestingDate": "2025-11-04T12:09:05.5187265-06:00",
"TotalPerformedTestCount": 1,
"PresumedPositiveCount": 1,
"AbsentCount": 1,
"RefusedCount": 1,
"StatusName": "sample string 4",
"NetworkName": "sample string 5"
}
application/xml, text/xml
Sample:
<COVIDDailySchoolSurveillance xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SchoolID>1</SchoolID> <SchoolShortName>sample string 2</SchoolShortName> <TestingDate>2025-11-04T12:09:05.5187265-06:00</TestingDate> <TotalPerformedTestCount>1</TotalPerformedTestCount> <PresumedPositiveCount>1</PresumedPositiveCount> <AbsentCount>1</AbsentCount> <RefusedCount>1</RefusedCount> <StatusName>sample string 4</StatusName> <NetworkName>sample string 5</NetworkName> </COVIDDailySchoolSurveillance>