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
{
"Systolic": 1,
"Diastolic": 2,
"MedicalCodeMeasurementMethodId": "803c6be1-b22a-482d-bced-b52080c6d440",
"MedicalCodeCuffTypeId": "38a626a7-358d-47fe-ae40-9bf63c8fdd51",
"MedicalCodeMeasurementLocationId": "290ef45c-0cda-4156-8fa9-e44b6080d7f1",
"MedicalCodeDiastolicEndpointId": "01b826d4-ae3d-4114-aa41-50dfb61d8c75",
"MedicalCodeContextPositionId": "a4902b95-6513-4235-bcb7-b65a3536fe6b",
"Remarks": "sample string 3",
"Id": 4,
"RelationId": 5,
"RegistrationDateTime": "2026-06-10T12:20:29.3724417+02:00",
"Source": "sample string 7"
}
application/xml, text/xml
<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-06-10T12:20:29.3724417+02:00</RegistrationDateTime> <RelationId>5</RelationId> <Source>sample string 7</Source> <Diastolic>2</Diastolic> <MedicalCodeContextPositionId>a4902b95-6513-4235-bcb7-b65a3536fe6b</MedicalCodeContextPositionId> <MedicalCodeCuffTypeId>38a626a7-358d-47fe-ae40-9bf63c8fdd51</MedicalCodeCuffTypeId> <MedicalCodeDiastolicEndpointId>01b826d4-ae3d-4114-aa41-50dfb61d8c75</MedicalCodeDiastolicEndpointId> <MedicalCodeMeasurementLocationId>290ef45c-0cda-4156-8fa9-e44b6080d7f1</MedicalCodeMeasurementLocationId> <MedicalCodeMeasurementMethodId>803c6be1-b22a-482d-bced-b52080c6d440</MedicalCodeMeasurementMethodId> <Remarks>sample string 3</Remarks> <Systolic>1</Systolic> </MedicalBloodPressure>