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": "63e9019e-834b-4e06-852c-06208b62edb3",
"DoctorId": "3e352e92-c490-4a10-a11e-32bf402a8691",
"DoctorName": "sample string 3",
"Gender": "sample string 4",
"Photo": "sample string 5",
"Url": "sample string 6",
"Specialties": "sample string 7",
"Speciality": [
{
"Id": "e53b6a9e-57be-4c34-a32e-1fa36d0d7d85",
"Name": "sample string 2"
},
{
"Id": "e53b6a9e-57be-4c34-a32e-1fa36d0d7d85",
"Name": "sample string 2"
}
]
},
{
"AccountId": "63e9019e-834b-4e06-852c-06208b62edb3",
"DoctorId": "3e352e92-c490-4a10-a11e-32bf402a8691",
"DoctorName": "sample string 3",
"Gender": "sample string 4",
"Photo": "sample string 5",
"Url": "sample string 6",
"Specialties": "sample string 7",
"Speciality": [
{
"Id": "e53b6a9e-57be-4c34-a32e-1fa36d0d7d85",
"Name": "sample string 2"
},
{
"Id": "e53b6a9e-57be-4c34-a32e-1fa36d0d7d85",
"Name": "sample string 2"
}
]
}
]