GET PlanCare2Api/CustomBuildingBlocks/ActualValue?customBuildingBlockGuid={customBuildingBlockGuid}&relationId={relationId}
Gets actual value of a CustomBuildingBlock.
Relation(s) can be of the following types: Client, 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 |
None |
| CustomBuildingBlockGuid |
CustomBuildingBlockGuid. |
globally unique identifier |
None |
| RelationId |
RelationId. |
integer |
None |
| RelationById |
RelationById. |
integer |
None |
| ChangedOn |
ChangedOn. |
date |
None |
| TextValue |
TextValue. |
string |
None |
| NumberValue |
NumberValue. |
decimal number |
None |
| DateTimeValue |
DateTimeValue. |
date |
None |
| ValuePossibilityGuid |
Guid of the selected ValuePossibility (SingleChoice). |
globally unique identifier |
None |
| ValuePossibilityGuids |
Guids of the selected ValuePossibilities (MultipleChoice). |
Collection of globally unique identifier |
None |
| Source |
Source. |
string |
None |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustomBuildingBlockGuid": "b2f48fb5-a892-4975-93c0-86b060b45180",
"RelationId": 3,
"RelationById": 4,
"ChangedOn": "2026-05-26T21:09:24.0910858+02:00",
"TextValue": "sample string 6",
"NumberValue": 1.0,
"DateTimeValue": "2026-05-26T21:09:24.0910858+02:00",
"ValuePossibilityGuid": "04385e67-3b07-4ec2-8375-0bb51310d530",
"ValuePossibilityGuids": [
"252f70f6-a149-4b35-bc43-301292a773fa",
"28a246ec-5672-489b-9105-a52d38bff1e1"
],
"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-05-26T21:09:24.0910858+02:00</ChangedOn>
<CustomBuildingBlockGuid>b2f48fb5-a892-4975-93c0-86b060b45180</CustomBuildingBlockGuid>
<DateTimeValue>2026-05-26T21:09:24.0910858+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>04385e67-3b07-4ec2-8375-0bb51310d530</ValuePossibilityGuid>
<ValuePossibilityGuids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>252f70f6-a149-4b35-bc43-301292a773fa</d2p1:guid>
<d2p1:guid>28a246ec-5672-489b-9105-a52d38bff1e1</d2p1:guid>
</ValuePossibilityGuids>
</CustomBuildingBlockValue>