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": "e6e8deb1-6f5d-4014-87d4-00cdb7a3e56f",
"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>e6e8deb1-6f5d-4014-87d4-00cdb7a3e56f</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": "94ce7f03-21a7-4f0e-926a-9fa39992cca0",
"VitalName": "sample string 2",
"TimeStamp": "2025-12-11T14:42:48.2738753+03:00",
"VitalValue1": 1.0,
"VitalValue2": 1.0,
"VitalValue3": 1.0
},
{
"VitalID": "94ce7f03-21a7-4f0e-926a-9fa39992cca0",
"VitalName": "sample string 2",
"TimeStamp": "2025-12-11T14:42:48.2738753+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>2025-12-11T14:42:48.2738753+03:00</TimeStamp>
<VitalID>94ce7f03-21a7-4f0e-926a-9fa39992cca0</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue1>1</VitalValue1>
<VitalValue2>1</VitalValue2>
<VitalValue3>1</VitalValue3>
</PatientAlertVitalLog>
<PatientAlertVitalLog>
<TimeStamp>2025-12-11T14:42:48.2738753+03:00</TimeStamp>
<VitalID>94ce7f03-21a7-4f0e-926a-9fa39992cca0</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue1>1</VitalValue1>
<VitalValue2>1</VitalValue2>
<VitalValue3>1</VitalValue3>
</PatientAlertVitalLog>
</LastVitalValues>
</GetPatientLastVitalResponse>