GET v1/TriggerActionDefinitions

Get a list with all TriggerActionDefinitions.

Request Information

Requires Authorization!

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

TriggerActionDefinitions list


Collection of TriggerActionDefinition
NameDescriptionTypeAdditional information
Id

Gets or sets the identifier.

integer

Required

Name

Gets or sets the name.

string

Required

Max length: 50

Enabled

Gets or sets the enabled.

boolean

Required

KeepTriggerActionHistory

Gets or sets the keep trigger action history.

boolean

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "Enabled": true,
    "KeepTriggerActionHistory": true
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "Enabled": true,
    "KeepTriggerActionHistory": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfTriggerActionDefinition xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <TriggerActionDefinition>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Enabled>true</Enabled>
    <KeepTriggerActionHistory>true</KeepTriggerActionHistory>
  </TriggerActionDefinition>
  <TriggerActionDefinition>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Enabled>true</Enabled>
    <KeepTriggerActionHistory>true</KeepTriggerActionHistory>
  </TriggerActionDefinition>
</ArrayOfTriggerActionDefinition>