GET PlanCare2Api/CustomBuildingBlocks/Values/{customBuildingBlockValueId}

Gets value of a CustomBuildingBlock.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customBuildingBlockValueId

Id of CustomBuildingBlockValue.

integer

Required

Body Parameters

None.

Response Information

Resource Description

CustomBuildingBlockValue.

CustomBuildingBlockValue
NameDescriptionTypeAdditional 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": "3131ebd9-b413-40c6-ab72-fee470ae0674",
  "RelationId": 3,
  "RelationById": 4,
  "ChangedOn": "2026-05-26T23:12:58.4951106+02:00",
  "TextValue": "sample string 6",
  "NumberValue": 1.0,
  "DateTimeValue": "2026-05-26T23:12:58.4951106+02:00",
  "ValuePossibilityGuid": "0eb4618f-f62d-4728-9bfb-cff26cd34b6d",
  "ValuePossibilityGuids": [
    "5cba806e-10db-4a37-b797-fab0c8f28881",
    "de133bc6-feee-4877-8ae0-674979797bc5"
  ],
  "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:12:58.4951106+02:00</ChangedOn>
  <CustomBuildingBlockGuid>3131ebd9-b413-40c6-ab72-fee470ae0674</CustomBuildingBlockGuid>
  <DateTimeValue>2026-05-26T23:12:58.4951106+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>0eb4618f-f62d-4728-9bfb-cff26cd34b6d</ValuePossibilityGuid>
  <ValuePossibilityGuids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>5cba806e-10db-4a37-b797-fab0c8f28881</d2p1:guid>
    <d2p1:guid>de133bc6-feee-4877-8ae0-674979797bc5</d2p1:guid>
  </ValuePossibilityGuids>
</CustomBuildingBlockValue>