GET PlanCare2Api/MedicalBloodPressure/{id}

Gets MedicalBloodPressure by id.

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

Request Information

URI Parameters

Name Description Type Additional information
id

The id of the MedicalBloodPressure.

integer

Required

Body Parameters

None.

Response Information

Resource Description

MedicalBloodPressure.

MedicalBloodPressure
Name Description Type Additional information
Systolic

Systolic.

integer

-

Diastolic

Diastolic.

integer

-

MedicalCodeMeasurementMethodId

Id of MedicalCodeMeasurementMethod (MedicalCodeListType.BloodPressureMeasurementMethod).

globally unique identifier

Nullable

MedicalCodeCuffTypeId

Id of MedicalCodeCuffType (MedicalCodeListType.BloodPressureCuffType).

globally unique identifier

Nullable

MedicalCodeMeasurementLocationId

Id of MedicalCodeMeasurementLocation (MedicalCodeListType.BloodPressureMeasurementLocation).

globally unique identifier

Nullable

MedicalCodeDiastolicEndpointId

Id of MedicalCodeDiastolicEndpoint (MedicalCodeListType.BloodPressureDiastolicEndpoint).

globally unique identifier

Nullable

MedicalCodeContextPositionId

Id of MedicalCodeContextPosition (MedicalCodeListType.BloodPressureContextPosition).

globally unique identifier

Nullable

Remarks

Remarks.

string

-

Id

Id of the registration.

integer

-

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

-

Response Formats

application/json, text/json

Sample:
{
  "Systolic": 1,
  "Diastolic": 2,
  "MedicalCodeMeasurementMethodId": "d09a4dca-1533-4bf3-809b-526b5676e039",
  "MedicalCodeCuffTypeId": "947c165c-7c9f-4c21-9946-da6a195a203b",
  "MedicalCodeMeasurementLocationId": "868aa8c0-3a18-4742-a2d3-dd77373733ba",
  "MedicalCodeDiastolicEndpointId": "3d0e9b05-11d4-4eb0-b34a-576bbfbf15f4",
  "MedicalCodeContextPositionId": "9eb8ffce-2dd0-4578-9d64-c3ab5afdb96f",
  "Remarks": "sample string 3",
  "Id": 4,
  "RelationId": 5,
  "RegistrationDateTime": "2026-05-26T23:18:58.2506892+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-26T23:18:58.2506892+02:00</RegistrationDateTime>
  <RelationId>5</RelationId>
  <Source>sample string 7</Source>
  <Diastolic>2</Diastolic>
  <MedicalCodeContextPositionId>9eb8ffce-2dd0-4578-9d64-c3ab5afdb96f</MedicalCodeContextPositionId>
  <MedicalCodeCuffTypeId>947c165c-7c9f-4c21-9946-da6a195a203b</MedicalCodeCuffTypeId>
  <MedicalCodeDiastolicEndpointId>3d0e9b05-11d4-4eb0-b34a-576bbfbf15f4</MedicalCodeDiastolicEndpointId>
  <MedicalCodeMeasurementLocationId>868aa8c0-3a18-4742-a2d3-dd77373733ba</MedicalCodeMeasurementLocationId>
  <MedicalCodeMeasurementMethodId>d09a4dca-1533-4bf3-809b-526b5676e039</MedicalCodeMeasurementMethodId>
  <Remarks>sample string 3</Remarks>
  <Systolic>1</Systolic>
</MedicalBloodPressure>