Skip to main content
Combines several conditions into one and keeps an item only when every single condition matches. Use this when an item has to pass more than one test at the same time, for example “the order is paid and the total is above 100”. If even one of the conditions fails, the item is filtered out. You usually combine this with the Or and Not logic options to build up the exact rule you need.

Fields

Sample data

This filter answers yes or no for each item, so there is no before and after. The example keeps only items where the status equals paid and the total is at least 100.
FieldValue
Condition 1status equals paid
Condition 2total is greater than or equal to 100
Incoming itemResult
{ "status": "paid", "total": 150 }matches
{ "status": "paid", "total": 50 }does not match
{ "status": "pending", "total": 150 }does not match