Split your workflow into different paths based on conditions like spending thresholds, performance metrics, or data values.
Field | Type | Required | Description |
---|---|---|---|
Conditions | Conditions Builder | Yes | Set up rules to evaluate (spending > $1000, CTR < 2%, etc.) |
Allow False Path | Switch | No | Enable the “false” output path (default: enabled) |
Operator | Description | Example |
---|---|---|
Equals | Value matches exactly | Campaign Status equals "Active" |
Not Equals | Value does not match | Campaign Type not equals "Display" |
Greater Than | Numeric value is larger | Campaign Spend > 1000 |
Less Than | Numeric value is smaller | CTR < 2.5 |
Contains | Text includes substring | Campaign Name contains "Black Friday" |
Does Not Contain | Text excludes substring | Campaign Name does not contain "Test" |
Starts With | Text begins with substring | Product Name starts with "Premium" |
Ends With | Text ends with substring | Campaign Name ends with "2024" |
In List | Value exists in specified list | Country in ["US", "UK", "CA"] |
Not In List | Value not in specified list | Campaign Type not in ["Search", "Display"] |
Is Null | Field is empty or missing | Email is null |
Is Not Null | Field has data | Phone Number is not null |
Regexp Match | Matches regular expression pattern | Email regexp match "^[a-zA-Z0-9._%+-]+@.*\.com$" |
Not Regexp Match | Does not match regex pattern | Campaign Name not regexp match "test|demo" |
Can I have more than two output paths?
What happens if I disable the false path?
How do I test my conditions before going live?
Can I use data from multiple previous nodes in conditions?
What's the difference between AND and OR logic?
How do I handle missing or invalid data in conditions?
Can I create alerts based on percentage changes?