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": "a9a72b98-6ef5-4713-b395-faed4ab8f4d6",
"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>a9a72b98-6ef5-4713-b395-faed4ab8f4d6</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": "6b8f8a55-a23d-45f7-b6ea-5b907e204502",
"AlertTypeID": "818f28ed-da28-4455-903c-7d06c4a3851e",
"ScheduledTime": "2026-02-28T15:35:28.4703247+03:00",
"ReminderTime": "2026-02-28T15:35:28.4703247+03:00",
"AlertStatusID": "e1e62d0e-ef0a-4da9-afd2-c95c7c714aaf",
"StatusTime": "2026-02-28T15:35:28.4703247+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "c4db5a6a-35fb-4a3e-9349-f7006d5ec972",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "51eebc4f-1cd0-4f3a-961f-6ac92d262f85",
"PatientPharmacyID": "4f0d2b5d-94a5-4dfb-a4e6-f2c16def08ed",
"VitalID": "9d6bff97-da7b-4ec3-b093-ab89bf41b399",
"MedicineID": "99e1c32d-c04f-4462-9e3f-0cb821e0d29e",
"MedicineName": "sample string 4",
"MedicineUnitID": "5f102a33-d0ff-4506-885e-ca22440db605",
"MedicineQuantity": 1.0
},
{
"PatientAlertID": "6b8f8a55-a23d-45f7-b6ea-5b907e204502",
"AlertTypeID": "818f28ed-da28-4455-903c-7d06c4a3851e",
"ScheduledTime": "2026-02-28T15:35:28.4703247+03:00",
"ReminderTime": "2026-02-28T15:35:28.4703247+03:00",
"AlertStatusID": "e1e62d0e-ef0a-4da9-afd2-c95c7c714aaf",
"StatusTime": "2026-02-28T15:35:28.4703247+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "c4db5a6a-35fb-4a3e-9349-f7006d5ec972",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "51eebc4f-1cd0-4f3a-961f-6ac92d262f85",
"PatientPharmacyID": "4f0d2b5d-94a5-4dfb-a4e6-f2c16def08ed",
"VitalID": "9d6bff97-da7b-4ec3-b093-ab89bf41b399",
"MedicineID": "99e1c32d-c04f-4462-9e3f-0cb821e0d29e",
"MedicineName": "sample string 4",
"MedicineUnitID": "5f102a33-d0ff-4506-885e-ca22440db605",
"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>e1e62d0e-ef0a-4da9-afd2-c95c7c714aaf</AlertStatusID>
<AlertTypeID>818f28ed-da28-4455-903c-7d06c4a3851e</AlertTypeID>
<AppointmentTypeID>c4db5a6a-35fb-4a3e-9349-f7006d5ec972</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>99e1c32d-c04f-4462-9e3f-0cb821e0d29e</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>5f102a33-d0ff-4506-885e-ca22440db605</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>6b8f8a55-a23d-45f7-b6ea-5b907e204502</PatientAlertID>
<PatientDoctorID>51eebc4f-1cd0-4f3a-961f-6ac92d262f85</PatientDoctorID>
<PatientPharmacyID>4f0d2b5d-94a5-4dfb-a4e6-f2c16def08ed</PatientPharmacyID>
<ReminderTime>2026-02-28T15:35:28.4703247+03:00</ReminderTime>
<ScheduledTime>2026-02-28T15:35:28.4703247+03:00</ScheduledTime>
<StatusTime>2026-02-28T15:35:28.4703247+03:00</StatusTime>
<VitalID>9d6bff97-da7b-4ec3-b093-ab89bf41b399</VitalID>
</PatientAlert>
<PatientAlert>
<AlertStatusID>e1e62d0e-ef0a-4da9-afd2-c95c7c714aaf</AlertStatusID>
<AlertTypeID>818f28ed-da28-4455-903c-7d06c4a3851e</AlertTypeID>
<AppointmentTypeID>c4db5a6a-35fb-4a3e-9349-f7006d5ec972</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>99e1c32d-c04f-4462-9e3f-0cb821e0d29e</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>5f102a33-d0ff-4506-885e-ca22440db605</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>6b8f8a55-a23d-45f7-b6ea-5b907e204502</PatientAlertID>
<PatientDoctorID>51eebc4f-1cd0-4f3a-961f-6ac92d262f85</PatientDoctorID>
<PatientPharmacyID>4f0d2b5d-94a5-4dfb-a4e6-f2c16def08ed</PatientPharmacyID>
<ReminderTime>2026-02-28T15:35:28.4703247+03:00</ReminderTime>
<ScheduledTime>2026-02-28T15:35:28.4703247+03:00</ScheduledTime>
<StatusTime>2026-02-28T15:35:28.4703247+03:00</StatusTime>
<VitalID>9d6bff97-da7b-4ec3-b093-ab89bf41b399</VitalID>
</PatientAlert>
</PatientAlert>
</GetPatientAlertResponse>