GET api/COVID/GetCountyDemographicsWeekly?CountyName={CountyName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CountyName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of COVIDCountyAgeRateModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AgeGroup | string |
None. |
|
| CaseCount | integer |
None. |
|
| CaseRate | decimal number |
None. |
|
| ReportDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AgeGroup": "sample string 1",
"CaseCount": 2,
"CaseRate": 3.0,
"ReportDate": "2025-12-13T22:15:34.2449285-06:00"
},
{
"AgeGroup": "sample string 1",
"CaseCount": 2,
"CaseRate": 3.0,
"ReportDate": "2025-12-13T22:15:34.2449285-06:00"
}
]
text/html
Sample:
[{"AgeGroup":"sample string 1","CaseCount":2,"CaseRate":3.0,"ReportDate":"2025-12-13T22:15:34.2449285-06:00"},{"AgeGroup":"sample string 1","CaseCount":2,"CaseRate":3.0,"ReportDate":"2025-12-13T22:15:34.2449285-06:00"}]
application/xml, text/xml
Sample:
<ArrayOfCOVIDCountyAgeRateModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DPHApi.Models.Demographics">
<COVIDCountyAgeRateModel>
<AgeGroup>sample string 1</AgeGroup>
<CaseCount>2</CaseCount>
<CaseRate>3</CaseRate>
<ReportDate>2025-12-13T22:15:34.2449285-06:00</ReportDate>
</COVIDCountyAgeRateModel>
<COVIDCountyAgeRateModel>
<AgeGroup>sample string 1</AgeGroup>
<CaseCount>2</CaseCount>
<CaseRate>3</CaseRate>
<ReportDate>2025-12-13T22:15:34.2449285-06:00</ReportDate>
</COVIDCountyAgeRateModel>
</ArrayOfCOVIDCountyAgeRateModel>
text/csv
Sample:
Sample not available.