GET api/MPatient?patientId={patientId}&noOfProviders={noOfProviders}
This method to get Latest Patient Provider List
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| patientId | globally unique identifier |
Required |
|
| noOfProviders | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Get Latest Patient Provider Data
Collection of PatientProviderModel| Name | Description | Type | Additional 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": "99fdf088-b719-4618-9508-bff7a4f96911",
"DoctorId": "186ef718-ccfb-4580-a6d3-c8fb4950a9f6",
"DoctorName": "sample string 3",
"Gender": "sample string 4",
"Photo": "sample string 5",
"Url": "sample string 6",
"Specialties": "sample string 7",
"Speciality": [
{
"Id": "3807fc65-a58a-4d36-a28b-24c1d2187093",
"Name": "sample string 2"
},
{
"Id": "3807fc65-a58a-4d36-a28b-24c1d2187093",
"Name": "sample string 2"
}
]
},
{
"AccountId": "99fdf088-b719-4618-9508-bff7a4f96911",
"DoctorId": "186ef718-ccfb-4580-a6d3-c8fb4950a9f6",
"DoctorName": "sample string 3",
"Gender": "sample string 4",
"Photo": "sample string 5",
"Url": "sample string 6",
"Specialties": "sample string 7",
"Speciality": [
{
"Id": "3807fc65-a58a-4d36-a28b-24c1d2187093",
"Name": "sample string 2"
},
{
"Id": "3807fc65-a58a-4d36-a28b-24c1d2187093",
"Name": "sample string 2"
}
]
}
]