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": "8efb39f5-a7bd-49a8-81ba-a9e3925b42ca",
"AlertStatusID": "9395c107-bdfa-4ac3-a34b-ea3943a80959",
"Note": "sample string 2",
"VitalValue1": 1.0,
"VitalValue2": 1.0,
"VitalValue3": 1.0,
"MedicineTakenQuantity": 1.0,
"PatientID": "e0e0e7eb-0820-4d12-89cf-303fc9943d2b",
"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>e0e0e7eb-0820-4d12-89cf-303fc9943d2b</PatientID> <WebApiVersion>4</WebApiVersion> <AlertStatusID>9395c107-bdfa-4ac3-a34b-ea3943a80959</AlertStatusID> <MedicineTakenQuantity>1</MedicineTakenQuantity> <Note>sample string 2</Note> <PatientAlertID>8efb39f5-a7bd-49a8-81ba-a9e3925b42ca</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": "3ac6509b-a469-4bde-aca9-ee24599659a0",
"AlertTypeID": "2abe4eeb-20e6-41cd-a028-e91bcc7452b0",
"ScheduledTime": "2025-12-11T14:38:05.9382851+03:00",
"ReminderTime": "2025-12-11T14:38:05.9382851+03:00",
"AlertStatusID": "b094cffc-e72a-4fbc-8515-143f215facd1",
"StatusTime": "2025-12-11T14:38:05.9382851+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "5efdbf48-8184-4cf7-b2aa-9cd25f969e98",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "ea50131c-bbc4-415d-a5f5-109024d1fa81",
"PatientPharmacyID": "e279dbbd-c2aa-42b9-b32a-2c8c0bd30233",
"VitalID": "26f4125c-5d29-45c6-b435-9ef1a2dc7829",
"MedicineID": "bb2ae74c-9413-472b-8a1c-1ed66bf5a750",
"MedicineName": "sample string 4",
"MedicineUnitID": "fa73a677-c75c-49fd-85b5-44e0bc2c6db7",
"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>b094cffc-e72a-4fbc-8515-143f215facd1</AlertStatusID>
<AlertTypeID>2abe4eeb-20e6-41cd-a028-e91bcc7452b0</AlertTypeID>
<AppointmentTypeID>5efdbf48-8184-4cf7-b2aa-9cd25f969e98</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>bb2ae74c-9413-472b-8a1c-1ed66bf5a750</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>fa73a677-c75c-49fd-85b5-44e0bc2c6db7</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>3ac6509b-a469-4bde-aca9-ee24599659a0</PatientAlertID>
<PatientDoctorID>ea50131c-bbc4-415d-a5f5-109024d1fa81</PatientDoctorID>
<PatientPharmacyID>e279dbbd-c2aa-42b9-b32a-2c8c0bd30233</PatientPharmacyID>
<ReminderTime>2025-12-11T14:38:05.9382851+03:00</ReminderTime>
<ScheduledTime>2025-12-11T14:38:05.9382851+03:00</ScheduledTime>
<StatusTime>2025-12-11T14:38:05.9382851+03:00</StatusTime>
<VitalID>26f4125c-5d29-45c6-b435-9ef1a2dc7829</VitalID>
</PatientAlert>
</PatientAlertResponse>