GET api/MPatient?patientId={patientId}&noOfProviders={noOfProviders}&languagecode={languagecode}
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 |
|
| languagecode | string |
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": "8b8c4491-0355-4cac-8413-8b22fd98e349",
"DoctorId": "444c3002-8733-4130-88d2-aaac04a8db05",
"DoctorName": "sample string 3",
"Gender": "sample string 4",
"Photo": "sample string 5",
"Url": "sample string 6",
"Specialties": "sample string 7",
"Speciality": [
{
"Id": "f0df51a1-d466-4951-a6b6-71a82436b73f",
"Name": "sample string 2"
},
{
"Id": "f0df51a1-d466-4951-a6b6-71a82436b73f",
"Name": "sample string 2"
}
]
},
{
"AccountId": "8b8c4491-0355-4cac-8413-8b22fd98e349",
"DoctorId": "444c3002-8733-4130-88d2-aaac04a8db05",
"DoctorName": "sample string 3",
"Gender": "sample string 4",
"Photo": "sample string 5",
"Url": "sample string 6",
"Specialties": "sample string 7",
"Speciality": [
{
"Id": "f0df51a1-d466-4951-a6b6-71a82436b73f",
"Name": "sample string 2"
},
{
"Id": "f0df51a1-d466-4951-a6b6-71a82436b73f",
"Name": "sample string 2"
}
]
}
]