POST api/Patient/GetPatientAppointment
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": "de45f76b-8c22-48b2-ba41-c1abcd98f06d",
"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>de45f76b-8c22-48b2-ba41-c1abcd98f06d</PatientID> <WebApiVersion>4</WebApiVersion> <PageCount>2</PageCount> <PageNumber>1</PageNumber> </PageRequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPatientAppointmentResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientAppointment | Collection of PatientAppointment |
None. |
|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| TotalCount | integer |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientAppointment": [
{
"PatientAppointmentID": "3a51b0b7-b13d-407e-b5c2-dc1783590e9b",
"AppointmentTypeID": "38cfe0fc-c34a-4443-a393-198f01daca52",
"PatientDoctorID": "70f24f57-5178-4a82-a78a-0629a9b1ac76",
"PatientPharmacyID": "19d271ad-556d-49d2-9e29-3511a412e479",
"AppointmentTitle": "sample string 2",
"AppointmentWith": "sample string 3",
"AppointmentTime": "2026-02-28T15:35:42.3120757+03:00",
"NotifyBefore": 1,
"Notes": "sample string 4"
},
{
"PatientAppointmentID": "3a51b0b7-b13d-407e-b5c2-dc1783590e9b",
"AppointmentTypeID": "38cfe0fc-c34a-4443-a393-198f01daca52",
"PatientDoctorID": "70f24f57-5178-4a82-a78a-0629a9b1ac76",
"PatientPharmacyID": "19d271ad-556d-49d2-9e29-3511a412e479",
"AppointmentTitle": "sample string 2",
"AppointmentWith": "sample string 3",
"AppointmentTime": "2026-02-28T15:35:42.3120757+03:00",
"NotifyBefore": 1,
"Notes": "sample string 4"
}
],
"PageNumber": 1,
"PageCount": 2,
"TotalCount": 3,
"WebApiVersion": 4
}
application/xml, text/xml
Sample:
<GetPatientAppointmentResponse 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>
<PatientAppointment>
<PatientAppointment>
<AppointmentTime>2026-02-28T15:35:42.3120757+03:00</AppointmentTime>
<AppointmentTitle>sample string 2</AppointmentTitle>
<AppointmentTypeID>38cfe0fc-c34a-4443-a393-198f01daca52</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<Notes>sample string 4</Notes>
<NotifyBefore>1</NotifyBefore>
<PatientAppointmentID>3a51b0b7-b13d-407e-b5c2-dc1783590e9b</PatientAppointmentID>
<PatientDoctorID>70f24f57-5178-4a82-a78a-0629a9b1ac76</PatientDoctorID>
<PatientPharmacyID>19d271ad-556d-49d2-9e29-3511a412e479</PatientPharmacyID>
</PatientAppointment>
<PatientAppointment>
<AppointmentTime>2026-02-28T15:35:42.3120757+03:00</AppointmentTime>
<AppointmentTitle>sample string 2</AppointmentTitle>
<AppointmentTypeID>38cfe0fc-c34a-4443-a393-198f01daca52</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<Notes>sample string 4</Notes>
<NotifyBefore>1</NotifyBefore>
<PatientAppointmentID>3a51b0b7-b13d-407e-b5c2-dc1783590e9b</PatientAppointmentID>
<PatientDoctorID>70f24f57-5178-4a82-a78a-0629a9b1ac76</PatientDoctorID>
<PatientPharmacyID>19d271ad-556d-49d2-9e29-3511a412e479</PatientPharmacyID>
</PatientAppointment>
</PatientAppointment>
</GetPatientAppointmentResponse>