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": "c9d60d79-e15d-4bc1-b623-86cc7d90e59b",
"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>c9d60d79-e15d-4bc1-b623-86cc7d90e59b</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": "e2d1e8c4-654e-4048-b4cf-461b56e037ae",
"AppointmentTypeID": "00acb717-c5b6-49d0-843f-80573f722b50",
"PatientDoctorID": "d5a8dbf8-4fe7-41f9-a91e-394def051717",
"PatientPharmacyID": "4dbaa72a-30a5-4b73-ac73-3717ca921a03",
"AppointmentTitle": "sample string 2",
"AppointmentWith": "sample string 3",
"AppointmentTime": "2025-12-11T14:41:10.8002102+03:00",
"NotifyBefore": 1,
"Notes": "sample string 4"
},
{
"PatientAppointmentID": "e2d1e8c4-654e-4048-b4cf-461b56e037ae",
"AppointmentTypeID": "00acb717-c5b6-49d0-843f-80573f722b50",
"PatientDoctorID": "d5a8dbf8-4fe7-41f9-a91e-394def051717",
"PatientPharmacyID": "4dbaa72a-30a5-4b73-ac73-3717ca921a03",
"AppointmentTitle": "sample string 2",
"AppointmentWith": "sample string 3",
"AppointmentTime": "2025-12-11T14:41:10.8002102+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>2025-12-11T14:41:10.8002102+03:00</AppointmentTime>
<AppointmentTitle>sample string 2</AppointmentTitle>
<AppointmentTypeID>00acb717-c5b6-49d0-843f-80573f722b50</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<Notes>sample string 4</Notes>
<NotifyBefore>1</NotifyBefore>
<PatientAppointmentID>e2d1e8c4-654e-4048-b4cf-461b56e037ae</PatientAppointmentID>
<PatientDoctorID>d5a8dbf8-4fe7-41f9-a91e-394def051717</PatientDoctorID>
<PatientPharmacyID>4dbaa72a-30a5-4b73-ac73-3717ca921a03</PatientPharmacyID>
</PatientAppointment>
<PatientAppointment>
<AppointmentTime>2025-12-11T14:41:10.8002102+03:00</AppointmentTime>
<AppointmentTitle>sample string 2</AppointmentTitle>
<AppointmentTypeID>00acb717-c5b6-49d0-843f-80573f722b50</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<Notes>sample string 4</Notes>
<NotifyBefore>1</NotifyBefore>
<PatientAppointmentID>e2d1e8c4-654e-4048-b4cf-461b56e037ae</PatientAppointmentID>
<PatientDoctorID>d5a8dbf8-4fe7-41f9-a91e-394def051717</PatientDoctorID>
<PatientPharmacyID>4dbaa72a-30a5-4b73-ac73-3717ca921a03</PatientPharmacyID>
</PatientAppointment>
</PatientAppointment>
</GetPatientAppointmentResponse>