POST api/Patient/PatientAlertUpdate
Request Information
URI Parameters
None.
Body Parameters
PatientAlertUpdateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientAlertID | globally unique identifier |
None. |
|
| AlertStatusID | globally unique identifier |
None. |
|
| Note | string |
None. |
|
| VitalValue1 | decimal number |
None. |
|
| VitalValue2 | decimal number |
None. |
|
| VitalValue3 | decimal number |
None. |
|
| MedicineTakenQuantity | decimal number |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientAlertID": "8b2a86e5-3c8f-4ad8-831e-baa50c4938dc",
"AlertStatusID": "3aa9fde4-1a8e-4f77-8c2d-1f10a030d609",
"Note": "sample string 2",
"VitalValue1": 1.0,
"VitalValue2": 1.0,
"VitalValue3": 1.0,
"MedicineTakenQuantity": 1.0,
"PatientID": "0c079f0a-066e-485e-9911-d49a555ab10c",
"WebApiVersion": 4,
"Language": "sample string 5"
}
application/xml, text/xml
Sample:
<PatientAlertUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO"> <Language>sample string 5</Language> <PatientID>0c079f0a-066e-485e-9911-d49a555ab10c</PatientID> <WebApiVersion>4</WebApiVersion> <AlertStatusID>3aa9fde4-1a8e-4f77-8c2d-1f10a030d609</AlertStatusID> <MedicineTakenQuantity>1</MedicineTakenQuantity> <Note>sample string 2</Note> <PatientAlertID>8b2a86e5-3c8f-4ad8-831e-baa50c4938dc</PatientAlertID> <VitalValue1>1</VitalValue1> <VitalValue2>1</VitalValue2> <VitalValue3>1</VitalValue3> </PatientAlertUpdateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PatientAlertResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientAlert | PatientAlert |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientAlert": {
"PatientAlertID": "7b4dde9d-58ea-4d6e-8ba9-67c80210c717",
"AlertTypeID": "286efcde-d492-4c78-ab53-2a233b6838de",
"ScheduledTime": "2026-06-18T12:14:57.1991525+03:00",
"ReminderTime": "2026-06-18T12:14:57.1991525+03:00",
"AlertStatusID": "0b0b39b4-4ef3-456b-af42-418c6d4cd286",
"StatusTime": "2026-06-18T12:14:57.1991525+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "1f8ed85b-e12a-4592-bf8c-d811fee7fcf3",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "ea9f5cfa-b960-4643-a8b0-25b6b96d4ea3",
"PatientPharmacyID": "376c281a-f85c-443e-b7c3-c4c814b018d5",
"VitalID": "20785824-2613-4ec2-9663-68f14c364a16",
"MedicineID": "00a42425-d07b-4fed-bc9b-46d6d4a37cea",
"MedicineName": "sample string 4",
"MedicineUnitID": "07b779d8-8f40-45a7-861a-66849198de72",
"MedicineQuantity": 1.0
},
"WebApiVersion": 1
}
application/xml, text/xml
Sample:
<PatientAlertResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>1</WebApiVersion>
<PatientAlert>
<AlertStatusID>0b0b39b4-4ef3-456b-af42-418c6d4cd286</AlertStatusID>
<AlertTypeID>286efcde-d492-4c78-ab53-2a233b6838de</AlertTypeID>
<AppointmentTypeID>1f8ed85b-e12a-4592-bf8c-d811fee7fcf3</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>00a42425-d07b-4fed-bc9b-46d6d4a37cea</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>07b779d8-8f40-45a7-861a-66849198de72</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>7b4dde9d-58ea-4d6e-8ba9-67c80210c717</PatientAlertID>
<PatientDoctorID>ea9f5cfa-b960-4643-a8b0-25b6b96d4ea3</PatientDoctorID>
<PatientPharmacyID>376c281a-f85c-443e-b7c3-c4c814b018d5</PatientPharmacyID>
<ReminderTime>2026-06-18T12:14:57.1991525+03:00</ReminderTime>
<ScheduledTime>2026-06-18T12:14:57.1991525+03:00</ScheduledTime>
<StatusTime>2026-06-18T12:14:57.1991525+03:00</StatusTime>
<VitalID>20785824-2613-4ec2-9663-68f14c364a16</VitalID>
</PatientAlert>
</PatientAlertResponse>