GET 17.0/app/properties/propertychain/{id}/property

Description

No description available.

URI Parameters

Name Description Type Additional information
id

integer

Required

None.

None.

Collection of PropertyChainItem
Name Description Type Additional information
Id

integer

None.

Text

string

None.

ToolTipText

string

None.

BackgroundColour

string

None.

LinkedTo

integer

None.

IsDeletable

boolean

None.

IsInactive

boolean

None.

application/json, text/json

Sample:
[
  {
    "id": 1,
    "text": "sample string 2",
    "toolTipText": "sample string 3",
    "backgroundColour": "sample string 4",
    "linkedTo": 5,
    "isDeletable": true,
    "isInactive": true
  },
  {
    "id": 1,
    "text": "sample string 2",
    "toolTipText": "sample string 3",
    "backgroundColour": "sample string 4",
    "linkedTo": 5,
    "isDeletable": true,
    "isInactive": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfPropertyChainItem xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <PropertyChainItem>
    <Id>1</Id>
    <Text>sample string 2</Text>
    <ToolTipText>sample string 3</ToolTipText>
    <BackgroundColour>sample string 4</BackgroundColour>
    <LinkedTo>5</LinkedTo>
    <IsDeletable>true</IsDeletable>
    <IsInactive>true</IsInactive>
  </PropertyChainItem>
  <PropertyChainItem>
    <Id>1</Id>
    <Text>sample string 2</Text>
    <ToolTipText>sample string 3</ToolTipText>
    <BackgroundColour>sample string 4</BackgroundColour>
    <LinkedTo>5</LinkedTo>
    <IsDeletable>true</IsDeletable>
    <IsInactive>true</IsInactive>
  </PropertyChainItem>
</ArrayOfPropertyChainItem>