Conditional rules
Conditional logic allows you to specify that certain conditions must be met, before triggering an action. The available actions are show or hide, the trigger for these actions is defined within rules.
{
"rules": [
{
"action": "show",
"conditions": [
{
"trigger_tag_name": "sign-here",
"criteria": "has_value"
}
],
"affected_tag_names": [
"signee-name"
]
}
]
}
Parameter | Description |
---|---|
action | The action to take when a condition is triggered
|
conditions | A list of condition objects that represent the rule’s conditions that have to be met, so that the action can be applied to the affected tags or tag groups.
|
affected_tag_names | A list of tag names which are affected by the rule
|
affected_tag_group_names | A list of tag names which are affected by the rule
|
Was this page helpful?