patient_report

Return a data table of all patients in every clinic the clinician belongs to, across every hospital they're a member of.

get/clinicians/{clinician_id}/patients/table

Path parameters

clinician_idinteger required

Query parameters

datestring

reference date (today's date) in format YYYY-MM-DD

Example:2019-01-02
filterstring
limitnumber
offsetstring
orderstring

Response

successful operation

has_moreboolean
nextstring
total_rowsnumber

Example response

{
  "rows": [
    {
      "last_completed_report_date": "2019-01-02",
      "last_meal_date": "2019-01-02",
      "next_report_date": "2019-01-02"
    }
  ]
}

Changes