Learn to use Wait Until node in workflow to halt until a condition or max time is met.
user completing payment
.Wait Until - Payment Reminder example
AND
, OR
.
Operator | Description |
---|---|
== | Key is equal to value. This is a case-sensitive check. |
!= | Key is not equal to value. This is a case-sensitive check. |
> | Key is greater than value. Can be applied to integers, float values, or epoch timestamps. |
>= | Key is greater than or equal to value. Can be applied to integers, float values, or epoch timestamps. |
< | Key is less than value. Can be applied to integers and float values. |
<= | Key is less than or equal to value. Can be applied to integers and float values. |
contains | Key should be a substring or a list item in an array. |
not contains | Key should not be a substring or match any list item in an array. |
is empty | Evaluates to true if the key is missing, an empty string, or has a null value. |
is not empty | Key should be present and should not be an empty string or null value. |
intersects | Evaluates to true if any value in the left array matches any value in the right array. Useful for checking overlaps between arrays. |
not intersects | Evaluates to true if no values in the left array match any values in the right array. It could be used in case of checking or filtering out any overlaps between arrays. |
"string"
1
, 1.2
true
, false
Data Type | Description | Referring this property in condition |
---|---|---|
Input Payload | Includes data from your trigger payload and any data modified or added by nodes such as data transform, batch/digest, or webhook/fetch nodes before the branch node. | Directly specify as key with no prefix |
Actor | Actor properties. In the case of an event trigger, distinct_id works as both actor and recipient. For an inline workflow trigger, it is the distinct_id in the actor object. | Add as $actor.<property_key> |
Recipient | Recipient properties. It is the distinct_id in your event trigger or the key value defined in override recipient field. For an inline workflow trigger, it is the distinct_id in the recipient object. | Add as $recipient.<property_key> |
Tenant | Tenant properties. These include all properties of the tenant_id in your workflow trigger. | Add as $brand.<property_key> |
OR
operator. Evaluation will pass if any of the conditions separated by OR
is true.
**d **h **m **s
and it adds a fixed delay for all users.
.duration_key
.reminder.frequency
50
, considered as duration in seconds.**d **h **m **s
, where d = day, h = hour, m = minutes and s = seconds