POST api/Patient/GetPatientDoctor
Request Information
URI Parameters
None.
Body Parameters
PageRequestBase| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageNumber": 1,
"PageCount": 2,
"PatientID": "67bb1eea-05c3-4717-ae9e-72c1fd248a86",
"WebApiVersion": 4,
"Language": "sample string 5"
}
application/xml, text/xml
Sample:
<PageRequestBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO"> <Language>sample string 5</Language> <PatientID>67bb1eea-05c3-4717-ae9e-72c1fd248a86</PatientID> <WebApiVersion>4</WebApiVersion> <PageCount>2</PageCount> <PageNumber>1</PageNumber> </PageRequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPatientDoctorResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientDoctor | Collection of PatientDoctor |
None. |
|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| TotalCount | integer |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientDoctor": [
{
"PatientDoctorID": "b7b013de-637b-4636-8793-8e9fc9776e09",
"DoctorSpecialtyID": "67ecfb86-92ec-4150-8ea0-2d4e967907fa",
"Name": "sample string 2",
"InstitutionName": "sample string 3",
"Address": "sample string 4",
"PhoneSMS": "sample string 5",
"WhatsApp": "sample string 6",
"Email": "sample string 7",
"Website": "sample string 8",
"WorkingHours": "sample string 9",
"AssistantName": "sample string 10",
"OtherInfo": "sample string 11",
"Notes": "sample string 12"
},
{
"PatientDoctorID": "b7b013de-637b-4636-8793-8e9fc9776e09",
"DoctorSpecialtyID": "67ecfb86-92ec-4150-8ea0-2d4e967907fa",
"Name": "sample string 2",
"InstitutionName": "sample string 3",
"Address": "sample string 4",
"PhoneSMS": "sample string 5",
"WhatsApp": "sample string 6",
"Email": "sample string 7",
"Website": "sample string 8",
"WorkingHours": "sample string 9",
"AssistantName": "sample string 10",
"OtherInfo": "sample string 11",
"Notes": "sample string 12"
}
],
"PageNumber": 1,
"PageCount": 2,
"TotalCount": 3,
"WebApiVersion": 4
}
application/xml, text/xml
Sample:
<GetPatientDoctorResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>4</WebApiVersion>
<PageCount>2</PageCount>
<PageNumber>1</PageNumber>
<TotalCount>3</TotalCount>
<PatientDoctor>
<PatientDoctor>
<Address>sample string 4</Address>
<AssistantName>sample string 10</AssistantName>
<DoctorSpecialtyID>67ecfb86-92ec-4150-8ea0-2d4e967907fa</DoctorSpecialtyID>
<Email>sample string 7</Email>
<InstitutionName>sample string 3</InstitutionName>
<Name>sample string 2</Name>
<Notes>sample string 12</Notes>
<OtherInfo>sample string 11</OtherInfo>
<PatientDoctorID>b7b013de-637b-4636-8793-8e9fc9776e09</PatientDoctorID>
<PhoneSMS>sample string 5</PhoneSMS>
<Website>sample string 8</Website>
<WhatsApp>sample string 6</WhatsApp>
<WorkingHours>sample string 9</WorkingHours>
</PatientDoctor>
<PatientDoctor>
<Address>sample string 4</Address>
<AssistantName>sample string 10</AssistantName>
<DoctorSpecialtyID>67ecfb86-92ec-4150-8ea0-2d4e967907fa</DoctorSpecialtyID>
<Email>sample string 7</Email>
<InstitutionName>sample string 3</InstitutionName>
<Name>sample string 2</Name>
<Notes>sample string 12</Notes>
<OtherInfo>sample string 11</OtherInfo>
<PatientDoctorID>b7b013de-637b-4636-8793-8e9fc9776e09</PatientDoctorID>
<PhoneSMS>sample string 5</PhoneSMS>
<Website>sample string 8</Website>
<WhatsApp>sample string 6</WhatsApp>
<WorkingHours>sample string 9</WorkingHours>
</PatientDoctor>
</PatientDoctor>
</GetPatientDoctorResponse>