GET v1/patient/SummaryData?startDate={startDate}&endDate={endDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
startDate

string

None.

endDate

string

None.

Body Parameters

None.

Response Information

Resource Description

SummaryDataResult
NameDescriptionTypeAdditional information
success

boolean

None.

data

summaryAnalysis

None.

date

string

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "data": {
    "totalPatient": 1,
    "totalPositive": 2,
    "totalNegative": 3,
    "hotSpot": 4,
    "state": 5,
    "lga": 6
  },
  "date": "sample string 2"
}

application/xml, text/xml

Sample:
<SummaryDataResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ntblcpEWORS.Models.patient">
  <data>
    <hotSpot>4</hotSpot>
    <lga>6</lga>
    <state>5</state>
    <totalNegative>3</totalNegative>
    <totalPatient>1</totalPatient>
    <totalPositive>2</totalPositive>
  </data>
  <date>sample string 2</date>
  <success>true</success>
</SummaryDataResult>