POST api/Patient/GetPatientLastVital

Request Information

URI Parameters

None.

Body Parameters

RequestBase
NameDescriptionTypeAdditional information
PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientID": "95635d9a-5c66-4593-b021-b41df39f2269",
  "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>95635d9a-5c66-4593-b021-b41df39f2269</PatientID>
  <WebApiVersion>2</WebApiVersion>
</RequestBase>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetPatientLastVitalResponse
NameDescriptionTypeAdditional information
LastVitalValues

Collection of PatientAlertVitalLog

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "LastVitalValues": [
    {
      "VitalID": "45ace540-5dd1-4e0e-8b2f-472b1c36b245",
      "VitalName": "sample string 2",
      "TimeStamp": "2026-02-28T15:38:06.5231112+03:00",
      "VitalValue1": 1.0,
      "VitalValue2": 1.0,
      "VitalValue3": 1.0
    },
    {
      "VitalID": "45ace540-5dd1-4e0e-8b2f-472b1c36b245",
      "VitalName": "sample string 2",
      "TimeStamp": "2026-02-28T15:38:06.5231112+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-02-28T15:38:06.5231112+03:00</TimeStamp>
      <VitalID>45ace540-5dd1-4e0e-8b2f-472b1c36b245</VitalID>
      <VitalName>sample string 2</VitalName>
      <VitalValue1>1</VitalValue1>
      <VitalValue2>1</VitalValue2>
      <VitalValue3>1</VitalValue3>
    </PatientAlertVitalLog>
    <PatientAlertVitalLog>
      <TimeStamp>2026-02-28T15:38:06.5231112+03:00</TimeStamp>
      <VitalID>45ace540-5dd1-4e0e-8b2f-472b1c36b245</VitalID>
      <VitalName>sample string 2</VitalName>
      <VitalValue1>1</VitalValue1>
      <VitalValue2>1</VitalValue2>
      <VitalValue3>1</VitalValue3>
    </PatientAlertVitalLog>
  </LastVitalValues>
</GetPatientLastVitalResponse>