GET api/Patients/ABTotalReviewedPatients?FDate={FDate}&TDate={TDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
FDate

string

Required

TDate

string

Required

Body Parameters

None.

Response Information

Resource Description

ABTotalReviewedPatientsModelView
NameDescriptionTypeAdditional information
ABTotRevCount

Collection of ABTotalReviewedPatientsView

None.

Response Formats

application/json, text/json

Sample:
{
  "ABTotRevCount": [
    {
      "ReviewedMonth": "sample string 1",
      "ReviewedCount": 2
    },
    {
      "ReviewedMonth": "sample string 1",
      "ReviewedCount": 2
    }
  ]
}

text/html

Sample:
{"ABTotRevCount":[{"ReviewedMonth":"sample string 1","ReviewedCount":2},{"ReviewedMonth":"sample string 1","ReviewedCount":2}]}

application/xml, text/xml

Sample:
<ABTotalReviewedPatientsModelView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AsterHISInfoAPIv2.Models">
  <ABTotRevCount>
    <ABTotalReviewedPatientsView>
      <ReviewedCount>2</ReviewedCount>
      <ReviewedMonth>sample string 1</ReviewedMonth>
    </ABTotalReviewedPatientsView>
    <ABTotalReviewedPatientsView>
      <ReviewedCount>2</ReviewedCount>
      <ReviewedMonth>sample string 1</ReviewedMonth>
    </ABTotalReviewedPatientsView>
  </ABTotRevCount>
</ABTotalReviewedPatientsModelView>