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": "fc9283ae-21f7-4f09-b48c-54ac82e79527",
"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>fc9283ae-21f7-4f09-b48c-54ac82e79527</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": "7771258d-a828-4004-88b6-e5ea99b0cf79",
"VitalName": "sample string 2",
"TimeStamp": "2026-04-24T14:28:04.2715972+03:00",
"VitalValue1": 1.0,
"VitalValue2": 1.0,
"VitalValue3": 1.0
},
{
"VitalID": "7771258d-a828-4004-88b6-e5ea99b0cf79",
"VitalName": "sample string 2",
"TimeStamp": "2026-04-24T14:28:04.2715972+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-04-24T14:28:04.2715972+03:00</TimeStamp>
<VitalID>7771258d-a828-4004-88b6-e5ea99b0cf79</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue1>1</VitalValue1>
<VitalValue2>1</VitalValue2>
<VitalValue3>1</VitalValue3>
</PatientAlertVitalLog>
<PatientAlertVitalLog>
<TimeStamp>2026-04-24T14:28:04.2715972+03:00</TimeStamp>
<VitalID>7771258d-a828-4004-88b6-e5ea99b0cf79</VitalID>
<VitalName>sample string 2</VitalName>
<VitalValue1>1</VitalValue1>
<VitalValue2>1</VitalValue2>
<VitalValue3>1</VitalValue3>
</PatientAlertVitalLog>
</LastVitalValues>
</GetPatientLastVitalResponse>