Conditions are used to compare two values. The condition builder enables you to use condition statements in your Workflows.
if
or if else
statements.AND
and OR
operators.
AND
operator requires that the statement satisfies two conditions.OR
operator requires that the statement satisfies at least one of two conditions.AND
or OR
operators to further define your statement. The condition appears in the text window on the right side.if
or if else
statementif
or if else
action.AND
or OR
operators to further define your statement. The condition appears in the text window on the right side.
x = b
The Action is executed when the left value is equal
to the specified right value.
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.
less than
the specified right value.
less than or equal to
the specified right value.
x > y
The Action is executed when the left value is greater than
the specified right value.
x >= y
The Action is executed when the left value is greater than or equal to
the specified right value.
contains
the right value.
DOES NOT contain
the right value.
starts with
the specified right value.
ends with
the specified right value.
matches a Regular Expression
.
has 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.
DOES NOT have a null value, empty array, object, or string
. When selecting this operator, the option to set the right value shouldn’t exist.
is true
. When selecting this operator, the option to set the right value shouldn’t exist.
is false
. When selecting this operator, the option to set the right value shouldn’t exist.