GET PlanCare2Api/CustomBuildingBlocks/Values/{customBuildingBlockValueId}

Gets value of a CustomBuildingBlock.

Request Information

URI Parameters

Name Description Type Additional information
customBuildingBlockValueId

Id of CustomBuildingBlockValue.

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": "66c0877d-c6bf-45d9-be0d-0538bc749b8b",
  "RelationId": 3,
  "RelationById": 4,
  "ChangedOn": "2026-05-26T23:14:03.2935027+02:00",
  "TextValue": "sample string 6",
  "NumberValue": 1.0,
  "DateTimeValue": "2026-05-26T23:14:03.2935027+02:00",
  "ValuePossibilityGuid": "1c648b21-d71a-4ca4-a06a-a34ffcc8aae9",
  "ValuePossibilityGuids": [
    "2e19989b-8f90-4bbe-8dc4-50b1515ef818",
    "e479b6d7-72c5-46a0-ad0c-f41afbcdd6b0"
  ],
  "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-26T23:14:03.2935027+02:00</ChangedOn>
  <CustomBuildingBlockGuid>66c0877d-c6bf-45d9-be0d-0538bc749b8b</CustomBuildingBlockGuid>
  <DateTimeValue>2026-05-26T23:14:03.2935027+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>1c648b21-d71a-4ca4-a06a-a34ffcc8aae9</ValuePossibilityGuid>
  <ValuePossibilityGuids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>2e19989b-8f90-4bbe-8dc4-50b1515ef818</d2p1:guid>
    <d2p1:guid>e479b6d7-72c5-46a0-ad0c-f41afbcdd6b0</d2p1:guid>
  </ValuePossibilityGuids>
</CustomBuildingBlockValue>