GET api/Patient/GetPatientProvider?patientId={patientId}&noOfProviders={noOfProviders}

This method to get Latest Patient Provider List

Request Information

URI Parameters

NameDescriptionTypeAdditional information
patientId

globally unique identifier

Required

noOfProviders

integer

Required

Body Parameters

None.

Response Information

Resource Description

Get Latest Patient Provider Data

Collection of PatientProviderModel
NameDescriptionTypeAdditional information
AccountId

globally unique identifier

None.

DoctorId

globally unique identifier

None.

DoctorName

string

None.

Gender

string

None.

Photo

string

None.

Url

string

None.

Specialties

string

None.

Speciality

Collection of DoctorSpeciality

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AccountId": "120d8451-86dd-446c-8a0f-5f353004bd84",
    "DoctorId": "ca7b26d7-cb70-4e30-955b-ea08bf709fa9",
    "DoctorName": "sample string 3",
    "Gender": "sample string 4",
    "Photo": "sample string 5",
    "Url": "sample string 6",
    "Specialties": "sample string 7",
    "Speciality": [
      {
        "Id": "347775ac-39c1-4504-b220-b904ae5695e7",
        "Name": "sample string 2"
      },
      {
        "Id": "347775ac-39c1-4504-b220-b904ae5695e7",
        "Name": "sample string 2"
      }
    ]
  },
  {
    "AccountId": "120d8451-86dd-446c-8a0f-5f353004bd84",
    "DoctorId": "ca7b26d7-cb70-4e30-955b-ea08bf709fa9",
    "DoctorName": "sample string 3",
    "Gender": "sample string 4",
    "Photo": "sample string 5",
    "Url": "sample string 6",
    "Specialties": "sample string 7",
    "Speciality": [
      {
        "Id": "347775ac-39c1-4504-b220-b904ae5695e7",
        "Name": "sample string 2"
      },
      {
        "Id": "347775ac-39c1-4504-b220-b904ae5695e7",
        "Name": "sample string 2"
      }
    ]
  }
]