GET api/Patient/GetPatientProvider?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": "a1e78628-e24d-448e-9a20-9a0d105b5e66",
"DoctorId": "92111629-6b87-4915-8e39-74ab77b626ec",
"DoctorName": "sample string 3",
"Gender": "sample string 4",
"Photo": "sample string 5",
"Url": "sample string 6",
"Specialties": "sample string 7",
"Speciality": [
{
"Id": "0c1112aa-cb07-44f3-9b9b-3e55816883ee",
"Name": "sample string 2"
},
{
"Id": "0c1112aa-cb07-44f3-9b9b-3e55816883ee",
"Name": "sample string 2"
}
]
},
{
"AccountId": "a1e78628-e24d-448e-9a20-9a0d105b5e66",
"DoctorId": "92111629-6b87-4915-8e39-74ab77b626ec",
"DoctorName": "sample string 3",
"Gender": "sample string 4",
"Photo": "sample string 5",
"Url": "sample string 6",
"Specialties": "sample string 7",
"Speciality": [
{
"Id": "0c1112aa-cb07-44f3-9b9b-3e55816883ee",
"Name": "sample string 2"
},
{
"Id": "0c1112aa-cb07-44f3-9b9b-3e55816883ee",
"Name": "sample string 2"
}
]
}
]