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": "21b1d337-e48d-4712-93df-2e0f27334df7",
"AlertStatusID": "f4eb7dbb-f68f-4539-86d8-c38d9fc90576",
"Note": "sample string 2",
"VitalValue1": 1.0,
"VitalValue2": 1.0,
"VitalValue3": 1.0,
"MedicineTakenQuantity": 1.0,
"PatientID": "519f2035-e62b-42fe-8d12-9462a25ff72d",
"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>519f2035-e62b-42fe-8d12-9462a25ff72d</PatientID> <WebApiVersion>4</WebApiVersion> <AlertStatusID>f4eb7dbb-f68f-4539-86d8-c38d9fc90576</AlertStatusID> <MedicineTakenQuantity>1</MedicineTakenQuantity> <Note>sample string 2</Note> <PatientAlertID>21b1d337-e48d-4712-93df-2e0f27334df7</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": "96198816-d73a-4b13-a840-7819d2efec14",
"AlertTypeID": "e86d191a-6695-4cba-a807-14611684289b",
"ScheduledTime": "2026-08-12T11:43:56.2712516+03:00",
"ReminderTime": "2026-08-12T11:43:56.2712516+03:00",
"AlertStatusID": "1ade4e7f-f9cc-4284-895d-d4e986a9b5c3",
"StatusTime": "2026-08-12T11:43:56.2712516+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "2c3e34f2-062f-4f87-9bc1-6186367e1615",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "f6159f29-93b0-4233-8241-34d0b29b9eca",
"PatientPharmacyID": "b31b9b18-1d21-4ac9-98fc-6f32ef8877d7",
"VitalID": "2d67cc05-eadb-44b1-884c-09a1274ac518",
"MedicineID": "329a7cce-a6ae-45a0-9688-8d71768bfa95",
"MedicineName": "sample string 4",
"MedicineUnitID": "b7b47972-48ee-45b1-9d2b-bfb5b28ff84c",
"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>1ade4e7f-f9cc-4284-895d-d4e986a9b5c3</AlertStatusID>
<AlertTypeID>e86d191a-6695-4cba-a807-14611684289b</AlertTypeID>
<AppointmentTypeID>2c3e34f2-062f-4f87-9bc1-6186367e1615</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>329a7cce-a6ae-45a0-9688-8d71768bfa95</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>b7b47972-48ee-45b1-9d2b-bfb5b28ff84c</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>96198816-d73a-4b13-a840-7819d2efec14</PatientAlertID>
<PatientDoctorID>f6159f29-93b0-4233-8241-34d0b29b9eca</PatientDoctorID>
<PatientPharmacyID>b31b9b18-1d21-4ac9-98fc-6f32ef8877d7</PatientPharmacyID>
<ReminderTime>2026-08-12T11:43:56.2712516+03:00</ReminderTime>
<ScheduledTime>2026-08-12T11:43:56.2712516+03:00</ScheduledTime>
<StatusTime>2026-08-12T11:43:56.2712516+03:00</StatusTime>
<VitalID>2d67cc05-eadb-44b1-884c-09a1274ac518</VitalID>
</PatientAlert>
</PatientAlertResponse>