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": "a61ed150-e4b2-4ed6-82d1-4f2bb83173da",
"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>a61ed150-e4b2-4ed6-82d1-4f2bb83173da</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": "7a697690-2ec3-40fb-af02-78c437253b3a",
"AppointmentTypeID": "3b23bebe-645d-4200-8d7f-a83a4136d2ca",
"PatientDoctorID": "7f6e3027-6877-4b28-813f-b6d109f6beeb",
"PatientPharmacyID": "6a640d93-f45d-4208-9cc9-07037895cea8",
"AppointmentTitle": "sample string 2",
"AppointmentWith": "sample string 3",
"AppointmentTime": "2026-04-24T14:24:50.0928609+03:00",
"NotifyBefore": 1,
"Notes": "sample string 4"
},
{
"PatientAppointmentID": "7a697690-2ec3-40fb-af02-78c437253b3a",
"AppointmentTypeID": "3b23bebe-645d-4200-8d7f-a83a4136d2ca",
"PatientDoctorID": "7f6e3027-6877-4b28-813f-b6d109f6beeb",
"PatientPharmacyID": "6a640d93-f45d-4208-9cc9-07037895cea8",
"AppointmentTitle": "sample string 2",
"AppointmentWith": "sample string 3",
"AppointmentTime": "2026-04-24T14:24:50.0928609+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-04-24T14:24:50.0928609+03:00</AppointmentTime>
<AppointmentTitle>sample string 2</AppointmentTitle>
<AppointmentTypeID>3b23bebe-645d-4200-8d7f-a83a4136d2ca</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<Notes>sample string 4</Notes>
<NotifyBefore>1</NotifyBefore>
<PatientAppointmentID>7a697690-2ec3-40fb-af02-78c437253b3a</PatientAppointmentID>
<PatientDoctorID>7f6e3027-6877-4b28-813f-b6d109f6beeb</PatientDoctorID>
<PatientPharmacyID>6a640d93-f45d-4208-9cc9-07037895cea8</PatientPharmacyID>
</PatientAppointment>
<PatientAppointment>
<AppointmentTime>2026-04-24T14:24:50.0928609+03:00</AppointmentTime>
<AppointmentTitle>sample string 2</AppointmentTitle>
<AppointmentTypeID>3b23bebe-645d-4200-8d7f-a83a4136d2ca</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<Notes>sample string 4</Notes>
<NotifyBefore>1</NotifyBefore>
<PatientAppointmentID>7a697690-2ec3-40fb-af02-78c437253b3a</PatientAppointmentID>
<PatientDoctorID>7f6e3027-6877-4b28-813f-b6d109f6beeb</PatientDoctorID>
<PatientPharmacyID>6a640d93-f45d-4208-9cc9-07037895cea8</PatientPharmacyID>
</PatientAppointment>
</PatientAppointment>
</GetPatientAppointmentResponse>