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": "20d7bb90-6cf7-47e5-9c6d-c01017a2215e",
"DoctorId": "3cfb8e25-7061-413d-a977-1dee686f4adf",
"DoctorName": "sample string 3",
"Gender": "sample string 4",
"Photo": "sample string 5",
"Url": "sample string 6",
"Specialties": "sample string 7",
"Speciality": [
{
"Id": "bc4ad868-bc38-4c94-bafd-8e3b3373e7f2",
"Name": "sample string 2"
},
{
"Id": "bc4ad868-bc38-4c94-bafd-8e3b3373e7f2",
"Name": "sample string 2"
}
]
},
{
"AccountId": "20d7bb90-6cf7-47e5-9c6d-c01017a2215e",
"DoctorId": "3cfb8e25-7061-413d-a977-1dee686f4adf",
"DoctorName": "sample string 3",
"Gender": "sample string 4",
"Photo": "sample string 5",
"Url": "sample string 6",
"Specialties": "sample string 7",
"Speciality": [
{
"Id": "bc4ad868-bc38-4c94-bafd-8e3b3373e7f2",
"Name": "sample string 2"
},
{
"Id": "bc4ad868-bc38-4c94-bafd-8e3b3373e7f2",
"Name": "sample string 2"
}
]
}
]