Using the Condition Builder in Blink
The Condition Builder is used in the following situations in the Blink platform- To trigger Event-Based Workflows.
- To configure
iforif elsestatements.
AND and OR operators.
- An
ANDoperator requires that the statement satisfies two conditions. - An
ORoperator requires that the statement satisfies at least one of two conditions.
Using the Condition Builder in an Event-Based Workflows
- When creating an Event-Based Workflow, in the Trigger setup, select a service provider, and the action you wish to trigger the Workflow.
- Activate Add condition. The condition builder consist of three parts; the left value, the operator, and the right value.
- To apply a condition, click on and enter each value. Select an operator from a menu that appears when you click on it.
- Use
ANDorORoperators to further define your statement. The condition appears in the text window on the right side. - Click Apply.

Using the condition builder in an if or if else statement
- In the Workflow Editor page, select an
iforif elseaction.
INFOThe condition builder consist of three parts: The left value, the operator and the right value.
- To apply a condition, click on and enter each value. Select an operator from a menu that appears when you click on it.
-
Use
ANDorORoperators to further define your statement. The condition appears in the text window on the right side.

Conditions
The following condition operators can be used to create a condition statement:1. Equals
x = b
The Action is executed when the left value is equal to the specified right value.
2. Not equals
x != y
This condition is the opposite of the equals condition. The Action is executed when the left value DOES NOT equal to the specified right value.
3. Less than
The Action is executed when the left value isless than the specified right value.
4. Less than or equals to
The Action is executed when the left value isless than or equal to the specified right value.
5. Greater than
x > y
The Action is executed when the left value is greater than the specified right value.
6. Greater than or equals to
x >= y
The Action is executed when the left value is greater than or equal to the specified right value.
7. Contains
The Action is executed if the left valuecontains the right value.
8. Not contains
The Action is executed if the left valueDOES NOT contain the right value.
9. Starts with
The Action is executed if the left valuestarts with the specified right value.
10. Ends with
The Action is executed if the left valueends with the specified right value.
11. Regex match
The Action is executed if the left valuematches a Regular Expression.
12. Is empty
The Action is executed when the specified eventhas a null value, or has an empty array, object, or string . When selecting this operator, the option to set the right value shouldn’t exist.
13. Is not empty
The Action is executed when the specified eventDOES NOT have a null value, empty array, object, or string. When selecting this operator, the option to set the right value shouldn’t exist.
14. Is true
The Action is executed if the left valueis true. When selecting this operator, the option to set the right value shouldn’t exist.
15. Is false
The Action is executed if the left value isis false. When selecting this operator, the option to set the right value shouldn’t exist.