GET PlanCare2Api/CareRegistration/FluidBalances?bsn={bsn}&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
| Name | Description | Type | Additional information |
|---|---|---|---|
| bsn |
The BSN of the client to obtain the values for. |
string |
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| Name | Description | Type | Additional 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
[
{
"$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-26T23:13:55.5567044+02:00",
"RegistrationDate": "2026-05-26T23:13:55.5567044+02:00"
},
{
"$ref": "1"
}
]
application/xml, text/xml
<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-26T23:13:55.5567044+02:00</CreationDate>
<EmployeeId>7</EmployeeId>
<EmployeeName>sample string 8</EmployeeName>
<Id>6</Id>
<RegistrationDate>2026-05-26T23:13:55.5567044+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-26T23:13:55.5567044+02:00</CreationDate>
<EmployeeId>7</EmployeeId>
<EmployeeName>sample string 8</EmployeeName>
<Id>6</Id>
<RegistrationDate>2026-05-26T23:13:55.5567044+02:00</RegistrationDate>
<Balance>1</Balance>
<Intake>2</Intake>
<MethodId>5</MethodId>
<Secretion>3</Secretion>
<UsedMethod>sample string 4</UsedMethod>
</FluidBalance>
</ArrayOfFluidBalance>