GET PlanCare2Api/MedicalFluidBalance/{id}

Gets MedicalFluidBalance by id.

Requires 'Read' permission for function MedicalFluidBalance {7F194FEF-9ECA-4786-ABAE-690C62A0E4B8}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The id of the MedicalFluidBalance.

integer

Required

Body Parameters

None.

Response Information

Resource Description

MedicalFluidBalance.

MedicalFluidBalance
NameDescriptionTypeAdditional information
Intake

Intake.

integer

None

Secretion

Secretion.

integer

None

MedicalCodeWayOfIntakeId

Id of MedicalCodeWayOfIntake (MedicalCodeListType.FluidBalanceWayOfIntake).

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:
{
  "Intake": 1,
  "Secretion": 2,
  "MedicalCodeWayOfIntakeId": "b712b0a8-ce58-4431-9e0b-86263ed30bc9",
  "Remarks": "sample string 3",
  "Id": 4,
  "RelationId": 5,
  "RegistrationDateTime": "2026-05-26T21:11:15.064889+02:00",
  "Source": "sample string 7"
}

application/xml, text/xml

Sample:
<MedicalFluidBalance 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-26T21:11:15.064889+02:00</RegistrationDateTime>
  <RelationId>5</RelationId>
  <Source>sample string 7</Source>
  <Intake>1</Intake>
  <MedicalCodeWayOfIntakeId>b712b0a8-ce58-4431-9e0b-86263ed30bc9</MedicalCodeWayOfIntakeId>
  <Remarks>sample string 3</Remarks>
  <Secretion>2</Secretion>
</MedicalFluidBalance>