POST api/Patient/GetPatientLastVital
Request Information
URI Parameters
None.
Body Parameters
RequestBase| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientID": "9af56aa7-9017-4867-ab25-f9294b5fb58c",
"WebApiVersion": 2,
"Language": "sample string 3"
}
application/xml, text/xml
Sample:
<RequestBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO"> <Language>sample string 3</Language> <PatientID>9af56aa7-9017-4867-ab25-f9294b5fb58c</PatientID> <WebApiVersion>2</WebApiVersion> </RequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPatientLastVitalResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| LastVitalValues | Collection of PatientAlertVitalLog |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"LastVitalValues": [
{
"VitalID": "a34bce5e-1229-4195-89fa-baf26b1e4a50",
"VitalName": "sample string 2",
"TimeStamp": "2026-06-18T12:18:07.3181841+03:00",
"VitalValue1": 1.0,
"VitalValue2": 1.0,
"VitalValue3": 1.0
},
{
"VitalID": "a34bce5e-1229-4195-89fa-baf26b1e4a50",
"VitalName": "sample string 2",
"TimeStamp": "2026-06-18T12:18:07.3181841+03:00",
"VitalValue1": 1.0,
"VitalValue2": 1.0,
"VitalValue3": 1.0
}
],
"WebApiVersion": 1
}
application/xml, text/xml
Sample:
<GetPatientLastVitalResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>1</WebApiVersion>
<LastVitalValues>
<PatientAlertVitalLog>
<TimeStamp>2026-06-18T12:18:07.3181841+03:00</TimeStamp>
<VitalID>a34bce5e-1229-4195-89fa-baf26b1e4a50</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue1>1</VitalValue1>
<VitalValue2>1</VitalValue2>
<VitalValue3>1</VitalValue3>
</PatientAlertVitalLog>
<PatientAlertVitalLog>
<TimeStamp>2026-06-18T12:18:07.3181841+03:00</TimeStamp>
<VitalID>a34bce5e-1229-4195-89fa-baf26b1e4a50</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue1>1</VitalValue1>
<VitalValue2>1</VitalValue2>
<VitalValue3>1</VitalValue3>
</PatientAlertVitalLog>
</LastVitalValues>
</GetPatientLastVitalResponse>