GET PlanCare2Api/CareRegistration/FluidBalances?clientId={clientId}&from={from}&maxRecordCount={maxRecordCount}

Gets the fluid balance of the specified client.

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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

The clientId to obtain the values for.

integer

Required

from

Only fluid balances created on or from the specified date are returned. Format = yyy-MM-dd (example 2014-01-21).

date

Required

maxRecordCount

The maximum number of fluid balances to return

integer

Required

Body Parameters

None.

Response Information

Resource Description

The list of requested fluid balances

Collection of FluidBalance
NameDescriptionTypeAdditional information
Balance

The balance which is the intake minus secretion in ml

integer

None

Intake

The amount of intake in ml

integer

None

Secretion

The amount of secretion in ml

integer

None

UsedMethod

The used method. This property is for reading purposes only.

string

None

MethodId

References to a Choice of ChoiceType 'VOCHT VORM'

integer

Required

Id

The internal id of the registration. Should be 0 for new instance.

integer

Required

EmployeeId

The internal id of the employee who has done the registration. When the EmployeeId is not the same as the logged on employee, then the logged on employee must be authorized in Plancare2 to store information on behalf of the given EmployeeId.

integer

Required

EmployeeName

The name of the employee. This property is for reading purposes only.

string

None

ClientId

The internal id of the client.

integer

Required

ClientName

The name of the client. This property is for reading purposes only.

string

None

CreationDate

The date when the registration is created. This property is for reading purposes only.

date

None

RegistrationDate

The registration date.

date

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Balance": 1,
    "Intake": 2,
    "Secretion": 3,
    "UsedMethod": "sample string 4",
    "MethodId": 5,
    "Id": 6,
    "EmployeeId": 7,
    "EmployeeName": "sample string 8",
    "ClientId": 9,
    "ClientName": "sample string 10",
    "CreationDate": "2026-05-26T21:11:03.6689953+02:00",
    "RegistrationDate": "2026-05-26T21:11:03.6689953+02:00"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFluidBalance xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.CareRegistration">
  <FluidBalance>
    <ClientId>9</ClientId>
    <ClientName>sample string 10</ClientName>
    <CreationDate>2026-05-26T21:11:03.6689953+02:00</CreationDate>
    <EmployeeId>7</EmployeeId>
    <EmployeeName>sample string 8</EmployeeName>
    <Id>6</Id>
    <RegistrationDate>2026-05-26T21:11:03.6689953+02:00</RegistrationDate>
    <Balance>1</Balance>
    <Intake>2</Intake>
    <MethodId>5</MethodId>
    <Secretion>3</Secretion>
    <UsedMethod>sample string 4</UsedMethod>
  </FluidBalance>
  <FluidBalance>
    <ClientId>9</ClientId>
    <ClientName>sample string 10</ClientName>
    <CreationDate>2026-05-26T21:11:03.6689953+02:00</CreationDate>
    <EmployeeId>7</EmployeeId>
    <EmployeeName>sample string 8</EmployeeName>
    <Id>6</Id>
    <RegistrationDate>2026-05-26T21:11:03.6689953+02:00</RegistrationDate>
    <Balance>1</Balance>
    <Intake>2</Intake>
    <MethodId>5</MethodId>
    <Secretion>3</Secretion>
    <UsedMethod>sample string 4</UsedMethod>
  </FluidBalance>
</ArrayOfFluidBalance>