GET PlanCare2Api/MedicalBloodPressure/{id}

Gets MedicalBloodPressure by id.

Requires 'Read' permission for function MedicalBloodPressure {4D31A282-1816-486C-8525-3F9D14BB6445}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The id of the MedicalBloodPressure.

integer

Required

Body Parameters

None.

Response Information

Resource Description

MedicalBloodPressure.

MedicalBloodPressure
NameDescriptionTypeAdditional information
Systolic

Systolic.

integer

None.

Diastolic

Diastolic.

integer

None.

MedicalCodeMeasurementMethodId

Id of MedicalCodeMeasurementMethod (MedicalCodeListType.BloodPressureMeasurementMethod).

globally unique identifier

None.

MedicalCodeCuffTypeId

Id of MedicalCodeCuffType (MedicalCodeListType.BloodPressureCuffType).

globally unique identifier

None.

MedicalCodeMeasurementLocationId

Id of MedicalCodeMeasurementLocation (MedicalCodeListType.BloodPressureMeasurementLocation).

globally unique identifier

None.

MedicalCodeDiastolicEndpointId

Id of MedicalCodeDiastolicEndpoint (MedicalCodeListType.BloodPressureDiastolicEndpoint).

globally unique identifier

None.

MedicalCodeContextPositionId

Id of MedicalCodeContextPosition (MedicalCodeListType.BloodPressureContextPosition).

globally unique identifier

None.

Remarks

Remarks.

string

None.

Id

Id of the registration.

integer

None.

RelationId

Id of the relation which the registration belongs to.

integer

Required

RegistrationDateTime

DateTime of measurement.

date

Required

Source

Source of registration (example: name of the questionnaire).

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Systolic": 1,
  "Diastolic": 2,
  "MedicalCodeMeasurementMethodId": "5ae2c4c3-53ad-4772-a19c-98ed5c6da6dd",
  "MedicalCodeCuffTypeId": "1fb871a0-c501-4413-b225-3147e1f80669",
  "MedicalCodeMeasurementLocationId": "1b85ba7a-73f1-4403-b632-5ede8866e6b0",
  "MedicalCodeDiastolicEndpointId": "7b1e9621-46d9-4c4c-86a9-485045b4be62",
  "MedicalCodeContextPositionId": "4a8e5945-4e9b-470c-8b45-3909df9fe576",
  "Remarks": "sample string 3",
  "Id": 4,
  "RelationId": 5,
  "RegistrationDateTime": "2026-05-26T22:10:16.7104928+02:00",
  "Source": "sample string 7"
}

application/xml, text/xml

Sample:
<MedicalBloodPressure xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Medical">
  <Id>4</Id>
  <RegistrationDateTime>2026-05-26T22:10:16.7104928+02:00</RegistrationDateTime>
  <RelationId>5</RelationId>
  <Source>sample string 7</Source>
  <Diastolic>2</Diastolic>
  <MedicalCodeContextPositionId>4a8e5945-4e9b-470c-8b45-3909df9fe576</MedicalCodeContextPositionId>
  <MedicalCodeCuffTypeId>1fb871a0-c501-4413-b225-3147e1f80669</MedicalCodeCuffTypeId>
  <MedicalCodeDiastolicEndpointId>7b1e9621-46d9-4c4c-86a9-485045b4be62</MedicalCodeDiastolicEndpointId>
  <MedicalCodeMeasurementLocationId>1b85ba7a-73f1-4403-b632-5ede8866e6b0</MedicalCodeMeasurementLocationId>
  <MedicalCodeMeasurementMethodId>5ae2c4c3-53ad-4772-a19c-98ed5c6da6dd</MedicalCodeMeasurementMethodId>
  <Remarks>sample string 3</Remarks>
  <Systolic>1</Systolic>
</MedicalBloodPressure>