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": "2025-12-11T14:41:31.1355944+03:00",
"PatientID": "ac86da91-8e04-4df4-8746-7c57e798eb51",
"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>ac86da91-8e04-4df4-8746-7c57e798eb51</PatientID> <WebApiVersion>2</WebApiVersion> <Date>2025-12-11T14:41:31.1355944+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": "d48e37cd-6b03-4db9-b342-3d3a2c037dcc",
"AlertTypeID": "ecb22195-eddb-47b2-8007-f568f2d0122b",
"ScheduledTime": "2025-12-11T14:41:31.1355944+03:00",
"ReminderTime": "2025-12-11T14:41:31.1355944+03:00",
"AlertStatusID": "f3bc6b56-433d-4603-a0b2-79f24ba44209",
"StatusTime": "2025-12-11T14:41:31.1355944+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "693063bf-73b2-4b0f-b951-a657ff567d02",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "3ccd3d58-3a03-4b54-b811-b03398ea2071",
"PatientPharmacyID": "5e20733f-770c-4523-8a5d-4acb7124060a",
"VitalID": "cecf482b-6d69-4fdb-a021-473c6c7211b9",
"MedicineID": "741f3487-2618-4380-83e6-6e11086eb4e5",
"MedicineName": "sample string 4",
"MedicineUnitID": "86c40af3-1fe7-40ad-b111-08b11e7f1361",
"MedicineQuantity": 1.0
},
{
"PatientAlertID": "d48e37cd-6b03-4db9-b342-3d3a2c037dcc",
"AlertTypeID": "ecb22195-eddb-47b2-8007-f568f2d0122b",
"ScheduledTime": "2025-12-11T14:41:31.1355944+03:00",
"ReminderTime": "2025-12-11T14:41:31.1355944+03:00",
"AlertStatusID": "f3bc6b56-433d-4603-a0b2-79f24ba44209",
"StatusTime": "2025-12-11T14:41:31.1355944+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "693063bf-73b2-4b0f-b951-a657ff567d02",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "3ccd3d58-3a03-4b54-b811-b03398ea2071",
"PatientPharmacyID": "5e20733f-770c-4523-8a5d-4acb7124060a",
"VitalID": "cecf482b-6d69-4fdb-a021-473c6c7211b9",
"MedicineID": "741f3487-2618-4380-83e6-6e11086eb4e5",
"MedicineName": "sample string 4",
"MedicineUnitID": "86c40af3-1fe7-40ad-b111-08b11e7f1361",
"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>f3bc6b56-433d-4603-a0b2-79f24ba44209</AlertStatusID>
<AlertTypeID>ecb22195-eddb-47b2-8007-f568f2d0122b</AlertTypeID>
<AppointmentTypeID>693063bf-73b2-4b0f-b951-a657ff567d02</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>741f3487-2618-4380-83e6-6e11086eb4e5</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>86c40af3-1fe7-40ad-b111-08b11e7f1361</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>d48e37cd-6b03-4db9-b342-3d3a2c037dcc</PatientAlertID>
<PatientDoctorID>3ccd3d58-3a03-4b54-b811-b03398ea2071</PatientDoctorID>
<PatientPharmacyID>5e20733f-770c-4523-8a5d-4acb7124060a</PatientPharmacyID>
<ReminderTime>2025-12-11T14:41:31.1355944+03:00</ReminderTime>
<ScheduledTime>2025-12-11T14:41:31.1355944+03:00</ScheduledTime>
<StatusTime>2025-12-11T14:41:31.1355944+03:00</StatusTime>
<VitalID>cecf482b-6d69-4fdb-a021-473c6c7211b9</VitalID>
</PatientAlert>
<PatientAlert>
<AlertStatusID>f3bc6b56-433d-4603-a0b2-79f24ba44209</AlertStatusID>
<AlertTypeID>ecb22195-eddb-47b2-8007-f568f2d0122b</AlertTypeID>
<AppointmentTypeID>693063bf-73b2-4b0f-b951-a657ff567d02</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>741f3487-2618-4380-83e6-6e11086eb4e5</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>86c40af3-1fe7-40ad-b111-08b11e7f1361</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>d48e37cd-6b03-4db9-b342-3d3a2c037dcc</PatientAlertID>
<PatientDoctorID>3ccd3d58-3a03-4b54-b811-b03398ea2071</PatientDoctorID>
<PatientPharmacyID>5e20733f-770c-4523-8a5d-4acb7124060a</PatientPharmacyID>
<ReminderTime>2025-12-11T14:41:31.1355944+03:00</ReminderTime>
<ScheduledTime>2025-12-11T14:41:31.1355944+03:00</ScheduledTime>
<StatusTime>2025-12-11T14:41:31.1355944+03:00</StatusTime>
<VitalID>cecf482b-6d69-4fdb-a021-473c6c7211b9</VitalID>
</PatientAlert>
</PatientAlert>
</GetPatientAlertResponse>