GET PlanCare2Api/CustomBuildingBlocks/ActualValue?customBuildingBlockGuid={customBuildingBlockGuid}&relationId={relationId}
Gets actual value of a CustomBuildingBlock.
Relation(s) can be of the following types: Client, Prospect, Family, Employee
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customBuildingBlockGuid |
Guid of CustomBuildingBlock. |
globally unique identifier |
Required |
| relationId |
Id of relation. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CustomBuildingBlockValue.
CustomBuildingBlockValue| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id. |
integer |
- |
| CustomBuildingBlockGuid |
CustomBuildingBlockGuid. |
globally unique identifier |
- |
| RelationId |
RelationId. |
integer |
- |
| RelationById |
RelationById. |
integer |
- |
| ChangedOn |
ChangedOn. |
date |
- |
| TextValue |
TextValue. |
string |
- |
| NumberValue |
NumberValue. |
decimal number |
Nullable |
| DateTimeValue |
DateTimeValue. |
date |
Nullable |
| ValuePossibilityGuid |
Guid of the selected ValuePossibility (SingleChoice). |
globally unique identifier |
Nullable |
| ValuePossibilityGuids |
Guids of the selected ValuePossibilities (MultipleChoice). |
Collection of globally unique identifier |
- |
| Source |
Source. |
string |
- |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustomBuildingBlockGuid": "77d5ec8f-96fb-48fc-8dcb-469259f6aa5e",
"RelationId": 3,
"RelationById": 4,
"ChangedOn": "2026-06-10T12:05:44.342888+02:00",
"TextValue": "sample string 6",
"NumberValue": 1.0,
"DateTimeValue": "2026-06-10T12:05:44.342888+02:00",
"ValuePossibilityGuid": "7e3a6b8f-9077-41ea-a7b0-0e5072f7e383",
"ValuePossibilityGuids": [
"1ea95e42-6dc3-4ab5-bac4-08e63049869b",
"c9c75a4d-ac67-4cbf-b09f-db52bf7a99b3"
],
"Source": "sample string 7"
}
application/xml, text/xml
Sample:
<CustomBuildingBlockValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.BuildingBlock">
<ChangedOn>2026-06-10T12:05:44.342888+02:00</ChangedOn>
<CustomBuildingBlockGuid>77d5ec8f-96fb-48fc-8dcb-469259f6aa5e</CustomBuildingBlockGuid>
<DateTimeValue>2026-06-10T12:05:44.342888+02:00</DateTimeValue>
<Id>1</Id>
<NumberValue>1</NumberValue>
<RelationById>4</RelationById>
<RelationId>3</RelationId>
<Source>sample string 7</Source>
<TextValue>sample string 6</TextValue>
<ValuePossibilityGuid>7e3a6b8f-9077-41ea-a7b0-0e5072f7e383</ValuePossibilityGuid>
<ValuePossibilityGuids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>1ea95e42-6dc3-4ab5-bac4-08e63049869b</d2p1:guid>
<d2p1:guid>c9c75a4d-ac67-4cbf-b09f-db52bf7a99b3</d2p1:guid>
</ValuePossibilityGuids>
</CustomBuildingBlockValue>