POST api/Patient/GetAllPatientAlert
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": "af558c0b-cd4d-490a-b306-cb5da556d704",
"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>af558c0b-cd4d-490a-b306-cb5da556d704</PatientID> <WebApiVersion>4</WebApiVersion> <PageCount>2</PageCount> <PageNumber>1</PageNumber> </PageRequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPatientAlertResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientAlert | Collection of PatientAlert |
None. |
|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| TotalCount | integer |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientAlert": [
{
"PatientAlertID": "5cc2b0bd-b06c-45e3-b82c-380d8ddcd0e9",
"AlertTypeID": "1539b773-a277-4ce6-b0a0-68dc748c70b2",
"ScheduledTime": "2026-08-12T11:43:56.2400021+03:00",
"ReminderTime": "2026-08-12T11:43:56.2400021+03:00",
"AlertStatusID": "7c4951d8-cbcf-474b-9bb1-4c7ef90cc2f9",
"StatusTime": "2026-08-12T11:43:56.2400021+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "56d197c8-7c69-4816-b70b-e1e9086c21c1",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "4f4ee648-ae67-4798-8e06-42978d44234f",
"PatientPharmacyID": "377a4554-1ca1-41dd-8ee5-f28d796618e4",
"VitalID": "3420c6e2-869e-41d9-a1b8-016376dc100e",
"MedicineID": "9dbe94a8-2073-4a22-af99-9fa9204a5ed1",
"MedicineName": "sample string 4",
"MedicineUnitID": "ec16290e-5710-4fae-b188-9fb9275c4a50",
"MedicineQuantity": 1.0
},
{
"PatientAlertID": "5cc2b0bd-b06c-45e3-b82c-380d8ddcd0e9",
"AlertTypeID": "1539b773-a277-4ce6-b0a0-68dc748c70b2",
"ScheduledTime": "2026-08-12T11:43:56.2400021+03:00",
"ReminderTime": "2026-08-12T11:43:56.2400021+03:00",
"AlertStatusID": "7c4951d8-cbcf-474b-9bb1-4c7ef90cc2f9",
"StatusTime": "2026-08-12T11:43:56.2400021+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "56d197c8-7c69-4816-b70b-e1e9086c21c1",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "4f4ee648-ae67-4798-8e06-42978d44234f",
"PatientPharmacyID": "377a4554-1ca1-41dd-8ee5-f28d796618e4",
"VitalID": "3420c6e2-869e-41d9-a1b8-016376dc100e",
"MedicineID": "9dbe94a8-2073-4a22-af99-9fa9204a5ed1",
"MedicineName": "sample string 4",
"MedicineUnitID": "ec16290e-5710-4fae-b188-9fb9275c4a50",
"MedicineQuantity": 1.0
}
],
"PageNumber": 1,
"PageCount": 2,
"TotalCount": 3,
"WebApiVersion": 4
}
application/xml, text/xml
Sample:
<GetPatientAlertResponse 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>
<PatientAlert>
<PatientAlert>
<AlertStatusID>7c4951d8-cbcf-474b-9bb1-4c7ef90cc2f9</AlertStatusID>
<AlertTypeID>1539b773-a277-4ce6-b0a0-68dc748c70b2</AlertTypeID>
<AppointmentTypeID>56d197c8-7c69-4816-b70b-e1e9086c21c1</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>9dbe94a8-2073-4a22-af99-9fa9204a5ed1</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>ec16290e-5710-4fae-b188-9fb9275c4a50</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>5cc2b0bd-b06c-45e3-b82c-380d8ddcd0e9</PatientAlertID>
<PatientDoctorID>4f4ee648-ae67-4798-8e06-42978d44234f</PatientDoctorID>
<PatientPharmacyID>377a4554-1ca1-41dd-8ee5-f28d796618e4</PatientPharmacyID>
<ReminderTime>2026-08-12T11:43:56.2400021+03:00</ReminderTime>
<ScheduledTime>2026-08-12T11:43:56.2400021+03:00</ScheduledTime>
<StatusTime>2026-08-12T11:43:56.2400021+03:00</StatusTime>
<VitalID>3420c6e2-869e-41d9-a1b8-016376dc100e</VitalID>
</PatientAlert>
<PatientAlert>
<AlertStatusID>7c4951d8-cbcf-474b-9bb1-4c7ef90cc2f9</AlertStatusID>
<AlertTypeID>1539b773-a277-4ce6-b0a0-68dc748c70b2</AlertTypeID>
<AppointmentTypeID>56d197c8-7c69-4816-b70b-e1e9086c21c1</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>9dbe94a8-2073-4a22-af99-9fa9204a5ed1</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>ec16290e-5710-4fae-b188-9fb9275c4a50</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>5cc2b0bd-b06c-45e3-b82c-380d8ddcd0e9</PatientAlertID>
<PatientDoctorID>4f4ee648-ae67-4798-8e06-42978d44234f</PatientDoctorID>
<PatientPharmacyID>377a4554-1ca1-41dd-8ee5-f28d796618e4</PatientPharmacyID>
<ReminderTime>2026-08-12T11:43:56.2400021+03:00</ReminderTime>
<ScheduledTime>2026-08-12T11:43:56.2400021+03:00</ScheduledTime>
<StatusTime>2026-08-12T11:43:56.2400021+03:00</StatusTime>
<VitalID>3420c6e2-869e-41d9-a1b8-016376dc100e</VitalID>
</PatientAlert>
</PatientAlert>
</GetPatientAlertResponse>