GET api/COVIDExport/GetDemographicsGender?CountyName={CountyName}&beginDate={beginDate}&endDate={endDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CountyName

string

Required

beginDate

date

Required

endDate

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of COVIDCountyGenderModelSnapshot
NameDescriptionTypeAdditional information
CountyName

string

None.

ReportDate

date

None.

description

string

None.

count

integer

None.

tested

integer

None.

deaths

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CountyName": "sample string 1",
    "ReportDate": "2025-05-21T12:05:24.0382246-05:00",
    "description": "sample string 3",
    "count": 4,
    "tested": 5,
    "deaths": 6
  },
  {
    "CountyName": "sample string 1",
    "ReportDate": "2025-05-21T12:05:24.0382246-05:00",
    "description": "sample string 3",
    "count": 4,
    "tested": 5,
    "deaths": 6
  }
]

text/html

Sample:
[{"CountyName":"sample string 1","ReportDate":"2025-05-21T12:05:24.0382246-05:00","description":"sample string 3","count":4,"tested":5,"deaths":6},{"CountyName":"sample string 1","ReportDate":"2025-05-21T12:05:24.0382246-05:00","description":"sample string 3","count":4,"tested":5,"deaths":6}]

application/xml, text/xml

Sample:
<ArrayOfCOVIDCountyGenderModelSnapshot xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DPHApi.Models.Demographics">
  <COVIDCountyGenderModelSnapshot>
    <CountyName>sample string 1</CountyName>
    <ReportDate>2025-05-21T12:05:24.0382246-05:00</ReportDate>
    <count>4</count>
    <deaths>6</deaths>
    <description>sample string 3</description>
    <tested>5</tested>
  </COVIDCountyGenderModelSnapshot>
  <COVIDCountyGenderModelSnapshot>
    <CountyName>sample string 1</CountyName>
    <ReportDate>2025-05-21T12:05:24.0382246-05:00</ReportDate>
    <count>4</count>
    <deaths>6</deaths>
    <description>sample string 3</description>
    <tested>5</tested>
  </COVIDCountyGenderModelSnapshot>
</ArrayOfCOVIDCountyGenderModelSnapshot>

text/csv

Sample:

Sample not available.