GET api/Patients/DoctorsList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

DoctorsListModel
NameDescriptionTypeAdditional information
DoctorsList

Collection of DoctorsListView

None.

Response Formats

application/json, text/json

Sample:
{
  "DoctorsList": [
    {
      "DctorId": 1,
      "DoctorName": "sample string 2"
    },
    {
      "DctorId": 1,
      "DoctorName": "sample string 2"
    }
  ]
}

text/html

Sample:
{"DoctorsList":[{"DctorId":1,"DoctorName":"sample string 2"},{"DctorId":1,"DoctorName":"sample string 2"}]}

application/xml, text/xml

Sample:
<DoctorsListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AsterHISInfoAPIv2.Models">
  <DoctorsList>
    <DoctorsListView>
      <DctorId>1</DctorId>
      <DoctorName>sample string 2</DoctorName>
    </DoctorsListView>
    <DoctorsListView>
      <DctorId>1</DctorId>
      <DoctorName>sample string 2</DoctorName>
    </DoctorsListView>
  </DoctorsList>
</DoctorsListModel>