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": "b6f416cc-1e3d-42c5-9515-b2cfa2fc3ad1",
"AlertStatusID": "6e82a4fb-5d3a-42a9-a9ce-519d581b3bc0",
"Note": "sample string 2",
"VitalValue1": 1.0,
"VitalValue2": 1.0,
"VitalValue3": 1.0,
"MedicineTakenQuantity": 1.0,
"PatientID": "47ae10d7-a2be-4edf-85b2-78f2083bc4dc",
"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>47ae10d7-a2be-4edf-85b2-78f2083bc4dc</PatientID> <WebApiVersion>4</WebApiVersion> <AlertStatusID>6e82a4fb-5d3a-42a9-a9ce-519d581b3bc0</AlertStatusID> <MedicineTakenQuantity>1</MedicineTakenQuantity> <Note>sample string 2</Note> <PatientAlertID>b6f416cc-1e3d-42c5-9515-b2cfa2fc3ad1</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": "f626ee0d-a49b-453f-8881-76ce772de174",
"AlertTypeID": "77782863-15f9-48cf-95a3-7d96a891ee90",
"ScheduledTime": "2026-04-24T14:19:23.582106+03:00",
"ReminderTime": "2026-04-24T14:19:23.582106+03:00",
"AlertStatusID": "06dc6a53-7d08-4740-8997-45ce8521a65e",
"StatusTime": "2026-04-24T14:19:23.582106+03:00",
"Note": "sample string 2",
"AppointmentTypeID": "2eb53989-e6dd-42ff-a4bf-3bd1bc63b20c",
"AppointmentWith": "sample string 3",
"PatientDoctorID": "6fc500bb-51e9-4480-9a4a-12744c7d7f56",
"PatientPharmacyID": "b24b23cb-d072-4fd6-b980-fb061d7a95aa",
"VitalID": "c73a0ec8-291f-4a90-bfeb-c3bc170674aa",
"MedicineID": "4cbb48ce-f602-47e8-842d-5625ede86aa6",
"MedicineName": "sample string 4",
"MedicineUnitID": "5e472c1e-7bcf-4982-b035-f03f7fc3cfdc",
"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>06dc6a53-7d08-4740-8997-45ce8521a65e</AlertStatusID>
<AlertTypeID>77782863-15f9-48cf-95a3-7d96a891ee90</AlertTypeID>
<AppointmentTypeID>2eb53989-e6dd-42ff-a4bf-3bd1bc63b20c</AppointmentTypeID>
<AppointmentWith>sample string 3</AppointmentWith>
<MedicineID>4cbb48ce-f602-47e8-842d-5625ede86aa6</MedicineID>
<MedicineName>sample string 4</MedicineName>
<MedicineQuantity>1</MedicineQuantity>
<MedicineUnitID>5e472c1e-7bcf-4982-b035-f03f7fc3cfdc</MedicineUnitID>
<Note>sample string 2</Note>
<PatientAlertID>f626ee0d-a49b-453f-8881-76ce772de174</PatientAlertID>
<PatientDoctorID>6fc500bb-51e9-4480-9a4a-12744c7d7f56</PatientDoctorID>
<PatientPharmacyID>b24b23cb-d072-4fd6-b980-fb061d7a95aa</PatientPharmacyID>
<ReminderTime>2026-04-24T14:19:23.582106+03:00</ReminderTime>
<ScheduledTime>2026-04-24T14:19:23.582106+03:00</ScheduledTime>
<StatusTime>2026-04-24T14:19:23.582106+03:00</StatusTime>
<VitalID>c73a0ec8-291f-4a90-bfeb-c3bc170674aa</VitalID>
</PatientAlert>
</PatientAlertResponse>