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": "595476f1-dc45-4e6e-adf9-632719ef6c79",
"AlertStatusID": "ea36d0a9-26b6-43ca-8835-c5f5d8612cff",
"Note": "sample string 2",
"VitalValue1": 1.0,
"VitalValue2": 1.0,
"VitalValue3": 1.0,
"MedicineTakenQuantity": 1.0,
"PatientID": "dcef2e37-2637-4a07-b9d4-df7fda7dc0b9",
"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>dcef2e37-2637-4a07-b9d4-df7fda7dc0b9</PatientID> <WebApiVersion>4</WebApiVersion> <AlertStatusID>ea36d0a9-26b6-43ca-8835-c5f5d8612cff</AlertStatusID> <MedicineTakenQuantity>1</MedicineTakenQuantity> <Note>sample string 2</Note> <PatientAlertID>595476f1-dc45-4e6e-adf9-632719ef6c79</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": "3ff04f2d-26f9-4466-909b-065694c22403",
"AlertTypeID": "9b37b484-f37b-45c6-b8a9-2238fe5703a6",
"ScheduledTime": "2026-02-28T15:32:51.4102665+03:00",
"ReminderTime": "2026-02-28T15:32:51.4102665+03:00",
"AlertStatusID": "41c395ee-79ae-4476-bbf2-332010676281",
"StatusTime": "2026-02-28T15:32:51.4102665+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "624854c7-a46b-4466-af4e-276fcbb8b234",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "f50a8bfa-5b87-446b-aaaf-e2b41de1ffd4",
"PatientPharmacyID": "e0b15437-dd2c-4a81-904c-4ca8467d744e",
"VitalID": "02905e87-9e3b-44a4-9e24-1360c9f7e482",
"MedicineID": "f0acca3f-a49f-4536-b202-31fc0e9422c6",
"MedicineName": "sample string 4",
"MedicineUnitID": "84bfb184-cab1-401b-a222-6c655ac8adde",
"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>41c395ee-79ae-4476-bbf2-332010676281</AlertStatusID>
<AlertTypeID>9b37b484-f37b-45c6-b8a9-2238fe5703a6</AlertTypeID>
<AppointmentTypeID>624854c7-a46b-4466-af4e-276fcbb8b234</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>f0acca3f-a49f-4536-b202-31fc0e9422c6</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>84bfb184-cab1-401b-a222-6c655ac8adde</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>3ff04f2d-26f9-4466-909b-065694c22403</PatientAlertID>
<PatientDoctorID>f50a8bfa-5b87-446b-aaaf-e2b41de1ffd4</PatientDoctorID>
<PatientPharmacyID>e0b15437-dd2c-4a81-904c-4ca8467d744e</PatientPharmacyID>
<ReminderTime>2026-02-28T15:32:51.4102665+03:00</ReminderTime>
<ScheduledTime>2026-02-28T15:32:51.4102665+03:00</ScheduledTime>
<StatusTime>2026-02-28T15:32:51.4102665+03:00</StatusTime>
<VitalID>02905e87-9e3b-44a4-9e24-1360c9f7e482</VitalID>
</PatientAlert>
</PatientAlertResponse>