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": "f0d530b4-1a38-46df-b26b-c5b6e5f67645",
"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>f0d530b4-1a38-46df-b26b-c5b6e5f67645</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": "43919443-d1c8-4288-8cf6-01b99338fd7d",
"AppointmentTypeID": "adcd3233-e6f7-4ed1-a66e-0e8f92183349",
"PatientDoctorID": "aad6b740-1151-4493-8fa6-3b0c3124cf6b",
"PatientPharmacyID": "53bc40b5-0472-4fd3-b8fd-1f0d227db86c",
"AppointmentTitle": "sample string 2",
"AppointmentWith": "sample string 3",
"AppointmentTime": "2026-06-18T12:14:57.0897615+03:00",
"NotifyBefore": 1,
"Notes": "sample string 4"
},
{
"PatientAppointmentID": "43919443-d1c8-4288-8cf6-01b99338fd7d",
"AppointmentTypeID": "adcd3233-e6f7-4ed1-a66e-0e8f92183349",
"PatientDoctorID": "aad6b740-1151-4493-8fa6-3b0c3124cf6b",
"PatientPharmacyID": "53bc40b5-0472-4fd3-b8fd-1f0d227db86c",
"AppointmentTitle": "sample string 2",
"AppointmentWith": "sample string 3",
"AppointmentTime": "2026-06-18T12:14:57.0897615+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-06-18T12:14:57.0897615+03:00</AppointmentTime>
<AppointmentTitle>sample string 2</AppointmentTitle>
<AppointmentTypeID>adcd3233-e6f7-4ed1-a66e-0e8f92183349</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<Notes>sample string 4</Notes>
<NotifyBefore>1</NotifyBefore>
<PatientAppointmentID>43919443-d1c8-4288-8cf6-01b99338fd7d</PatientAppointmentID>
<PatientDoctorID>aad6b740-1151-4493-8fa6-3b0c3124cf6b</PatientDoctorID>
<PatientPharmacyID>53bc40b5-0472-4fd3-b8fd-1f0d227db86c</PatientPharmacyID>
</PatientAppointment>
<PatientAppointment>
<AppointmentTime>2026-06-18T12:14:57.0897615+03:00</AppointmentTime>
<AppointmentTitle>sample string 2</AppointmentTitle>
<AppointmentTypeID>adcd3233-e6f7-4ed1-a66e-0e8f92183349</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<Notes>sample string 4</Notes>
<NotifyBefore>1</NotifyBefore>
<PatientAppointmentID>43919443-d1c8-4288-8cf6-01b99338fd7d</PatientAppointmentID>
<PatientDoctorID>aad6b740-1151-4493-8fa6-3b0c3124cf6b</PatientDoctorID>
<PatientPharmacyID>53bc40b5-0472-4fd3-b8fd-1f0d227db86c</PatientPharmacyID>
</PatientAppointment>
</PatientAppointment>
</GetPatientAppointmentResponse>