POST api/Patient/GetPatientAlertByDay
Request Information
URI Parameters
None.
Body Parameters
PatientAlertByDayGetRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Date | date |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Date": "2026-02-28T15:36:45.5433161+03:00",
"PatientID": "ae0325d4-f226-4173-86fd-71627b059b02",
"WebApiVersion": 2,
"Language": "sample string 3"
}
application/xml, text/xml
Sample:
<PatientAlertByDayGetRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO"> <Language>sample string 3</Language> <PatientID>ae0325d4-f226-4173-86fd-71627b059b02</PatientID> <WebApiVersion>2</WebApiVersion> <Date>2026-02-28T15:36:45.5433161+03:00</Date> </PatientAlertByDayGetRequest>
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": "26d469c3-af3a-4912-b1ae-22aebee1820f",
"AlertTypeID": "c0ca61e0-365c-42f4-b90e-af65e437bd2e",
"ScheduledTime": "2026-02-28T15:36:45.5433161+03:00",
"ReminderTime": "2026-02-28T15:36:45.5433161+03:00",
"AlertStatusID": "7a3a1cc0-2c65-41df-95da-9f81456b85b6",
"StatusTime": "2026-02-28T15:36:45.5433161+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "508b633a-8a80-4ed9-b437-1cc784b3d943",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "ced26820-f80b-420d-9920-9e9829aa06f9",
"PatientPharmacyID": "4abe327a-a70e-4627-b105-78552fd4846f",
"VitalID": "9509bbfc-eb81-4226-85a4-abe5268bcaa2",
"MedicineID": "9f13c29c-ff45-432c-b4bb-4cf06fb2b07b",
"MedicineName": "sample string 4",
"MedicineUnitID": "7daae797-f6ee-409b-a061-c7a321f49087",
"MedicineQuantity": 1.0
},
{
"PatientAlertID": "26d469c3-af3a-4912-b1ae-22aebee1820f",
"AlertTypeID": "c0ca61e0-365c-42f4-b90e-af65e437bd2e",
"ScheduledTime": "2026-02-28T15:36:45.5433161+03:00",
"ReminderTime": "2026-02-28T15:36:45.5433161+03:00",
"AlertStatusID": "7a3a1cc0-2c65-41df-95da-9f81456b85b6",
"StatusTime": "2026-02-28T15:36:45.5433161+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "508b633a-8a80-4ed9-b437-1cc784b3d943",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "ced26820-f80b-420d-9920-9e9829aa06f9",
"PatientPharmacyID": "4abe327a-a70e-4627-b105-78552fd4846f",
"VitalID": "9509bbfc-eb81-4226-85a4-abe5268bcaa2",
"MedicineID": "9f13c29c-ff45-432c-b4bb-4cf06fb2b07b",
"MedicineName": "sample string 4",
"MedicineUnitID": "7daae797-f6ee-409b-a061-c7a321f49087",
"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>7a3a1cc0-2c65-41df-95da-9f81456b85b6</AlertStatusID>
<AlertTypeID>c0ca61e0-365c-42f4-b90e-af65e437bd2e</AlertTypeID>
<AppointmentTypeID>508b633a-8a80-4ed9-b437-1cc784b3d943</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>9f13c29c-ff45-432c-b4bb-4cf06fb2b07b</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>7daae797-f6ee-409b-a061-c7a321f49087</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>26d469c3-af3a-4912-b1ae-22aebee1820f</PatientAlertID>
<PatientDoctorID>ced26820-f80b-420d-9920-9e9829aa06f9</PatientDoctorID>
<PatientPharmacyID>4abe327a-a70e-4627-b105-78552fd4846f</PatientPharmacyID>
<ReminderTime>2026-02-28T15:36:45.5433161+03:00</ReminderTime>
<ScheduledTime>2026-02-28T15:36:45.5433161+03:00</ScheduledTime>
<StatusTime>2026-02-28T15:36:45.5433161+03:00</StatusTime>
<VitalID>9509bbfc-eb81-4226-85a4-abe5268bcaa2</VitalID>
</PatientAlert>
<PatientAlert>
<AlertStatusID>7a3a1cc0-2c65-41df-95da-9f81456b85b6</AlertStatusID>
<AlertTypeID>c0ca61e0-365c-42f4-b90e-af65e437bd2e</AlertTypeID>
<AppointmentTypeID>508b633a-8a80-4ed9-b437-1cc784b3d943</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>9f13c29c-ff45-432c-b4bb-4cf06fb2b07b</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>7daae797-f6ee-409b-a061-c7a321f49087</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>26d469c3-af3a-4912-b1ae-22aebee1820f</PatientAlertID>
<PatientDoctorID>ced26820-f80b-420d-9920-9e9829aa06f9</PatientDoctorID>
<PatientPharmacyID>4abe327a-a70e-4627-b105-78552fd4846f</PatientPharmacyID>
<ReminderTime>2026-02-28T15:36:45.5433161+03:00</ReminderTime>
<ScheduledTime>2026-02-28T15:36:45.5433161+03:00</ScheduledTime>
<StatusTime>2026-02-28T15:36:45.5433161+03:00</StatusTime>
<VitalID>9509bbfc-eb81-4226-85a4-abe5268bcaa2</VitalID>
</PatientAlert>
</PatientAlert>
</GetPatientAlertResponse>