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": "85d8e584-5bf3-4aa9-a457-e618d482385f",
"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>85d8e584-5bf3-4aa9-a457-e618d482385f</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": "33e88ccb-c8f2-47d0-a14e-3f2c8cc63b98",
"AppointmentTypeID": "ed6ba414-a425-4fcf-b454-1ff4c8d51494",
"PatientDoctorID": "c8c1e4e6-3bb2-459f-8da9-1b96ff979361",
"PatientPharmacyID": "cf722219-749a-4616-93a4-1a0e43de23f0",
"AppointmentTitle": "sample string 2",
"AppointmentWith": "sample string 3",
"AppointmentTime": "2026-08-12T11:43:56.2087519+03:00",
"NotifyBefore": 1,
"Notes": "sample string 4"
},
{
"PatientAppointmentID": "33e88ccb-c8f2-47d0-a14e-3f2c8cc63b98",
"AppointmentTypeID": "ed6ba414-a425-4fcf-b454-1ff4c8d51494",
"PatientDoctorID": "c8c1e4e6-3bb2-459f-8da9-1b96ff979361",
"PatientPharmacyID": "cf722219-749a-4616-93a4-1a0e43de23f0",
"AppointmentTitle": "sample string 2",
"AppointmentWith": "sample string 3",
"AppointmentTime": "2026-08-12T11:43:56.2087519+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-08-12T11:43:56.2087519+03:00</AppointmentTime>
<AppointmentTitle>sample string 2</AppointmentTitle>
<AppointmentTypeID>ed6ba414-a425-4fcf-b454-1ff4c8d51494</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<Notes>sample string 4</Notes>
<NotifyBefore>1</NotifyBefore>
<PatientAppointmentID>33e88ccb-c8f2-47d0-a14e-3f2c8cc63b98</PatientAppointmentID>
<PatientDoctorID>c8c1e4e6-3bb2-459f-8da9-1b96ff979361</PatientDoctorID>
<PatientPharmacyID>cf722219-749a-4616-93a4-1a0e43de23f0</PatientPharmacyID>
</PatientAppointment>
<PatientAppointment>
<AppointmentTime>2026-08-12T11:43:56.2087519+03:00</AppointmentTime>
<AppointmentTitle>sample string 2</AppointmentTitle>
<AppointmentTypeID>ed6ba414-a425-4fcf-b454-1ff4c8d51494</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<Notes>sample string 4</Notes>
<NotifyBefore>1</NotifyBefore>
<PatientAppointmentID>33e88ccb-c8f2-47d0-a14e-3f2c8cc63b98</PatientAppointmentID>
<PatientDoctorID>c8c1e4e6-3bb2-459f-8da9-1b96ff979361</PatientDoctorID>
<PatientPharmacyID>cf722219-749a-4616-93a4-1a0e43de23f0</PatientPharmacyID>
</PatientAppointment>
</PatientAppointment>
</GetPatientAppointmentResponse>