What Conditions Do
A condition evaluates a Yes/No question about a fan. Based on the answer, the fan goes down one of two branches:- Yes branch: The condition is true — the fan meets the criteria
- No branch: The condition is false — the fan does not meet the criteria
How Conditions Look on the Canvas
Conditions appear as diamond-shaped nodes on the Flow Builder canvas, visually distinct from the rectangular action and delay nodes. Two lines extend from the diamond:- A line to the right or down-left for the Yes path
- A line to the right or down-right for the No path
Creating a Condition
Step 1: Add the Condition Node
Click the add button (”+”) below any node in your flow and select “Condition” from the menu. The Condition Builder modal opens.Step 2: Define Your Criteria
The Condition Builder lets you define what the condition checks. Choose from the condition types below.Step 3: Build Out Both Branches
After creating the condition, the canvas shows two “Add Action” buttons — one for the Yes branch and one for the No branch. Click each to build out the respective paths.Important: Conditions create PARALLEL branches, not sequential steps. Both branches exist simultaneously on the canvas. Each fan only takes one path, but you need to build both.
Condition Types
Fan Attribute Filters
Check a fan’s profile data:- VIP Tier: Is the fan Gold, Silver, or Bronze tier?
- Example: “Is VIP tier equal to Gold?” — Yes: send VIP-exclusive content. No: send standard content.
- Location: Where is the fan located?
- Example: “Is fan’s country equal to US?” — Yes: send US tour dates. No: send international streaming links.
- Engagement Score: How engaged is this fan?
- Example: “Is engagement score greater than 80?” — Yes: invite to exclusive event. No: send re-engagement sequence.
- Custom Fields: Any custom data you have stored on the fan profile
- Example: “Is favorite genre equal to hip-hop?” — Yes: recommend hip-hop playlist. No: recommend pop playlist.
Fan Behavior
Check what the fan has or has not done:- Has Presaved: Did the fan presave your music?
- Example: After release, check presave status. Yes: “Your presave just went live!” No: “Check out the new release!”
- Has RSVP’d: Did the fan RSVP to an event?
- Example: Before on-sale, check RSVP. Yes: send presale code. No: send general on-sale announcement.
- Has Purchased: Did the fan buy merch or tickets?
- Example: After a promo email, check purchase. Yes: send thank-you. No: send discount offer.
- Has Opened Email: Did the fan open a specific email?
- Example: After a time delay, check if they opened the previous email. Yes: continue the sequence. No: resend with a new subject line.
- Has Clicked Link: Did the fan click a link in a message?
- Has Streamed: Did the fan stream your music?
- Has Replied to SMS: Did the fan reply to a text message?
AI Intent Detection
Use AI to evaluate the fan’s message content:- Example: A fan sends a DM. The condition checks: “Does the message indicate interest in tour dates?” AI analyzes the message and determines Yes or No.
- This is powerful for routing fans to the right branch based on what they said, even if they did not use specific keywords.
Keyword Matching
Check if a fan’s message contains specific keywords:- Exact match: Message equals “PRESAVE” exactly
- Contains: Message includes the word “ticket” anywhere
- Starts with: Message begins with “Hey”
- AI intent: Message conveys the meaning of “wanting to presave” regardless of exact wording
AND/OR Logic
For more complex conditions, you can combine multiple criteria using logical operators.AND Logic
All conditions in the group must be true for the Yes branch to fire. Example: “Is fan from the US AND is engagement score above 50?”- Fan is from the US with score 75 → Yes
- Fan is from the US with score 30 → No
- Fan is from Canada with score 90 → No
OR Logic
Any condition in the group can be true for the Yes branch to fire. Example: “Is fan from Nashville OR is fan from Austin?”- Fan from Nashville → Yes
- Fan from Austin → Yes
- Fan from Chicago → No
Filter Groups
For the most complex logic, create filter groups — groups of AND conditions connected by OR: Example: “(Fan is VIP Gold AND from the US) OR (Fan has purchased merch AND engagement score above 90)” This means: the fan qualifies if they are either a US-based Gold VIP, or a highly-engaged merch buyer from anywhere.Building Compound Conditions
In the Condition Builder modal:- Add your first criterion
- Click “Add Condition” to add another criterion within the same group (AND logic)
- Click “Add Group” to create a new group (OR logic between groups)
- Each group evaluates independently, and any group returning true sends the fan down the Yes branch
Branching Patterns
Simple Two-Way Branch
The most common pattern:Nested Conditions
Branch within a branch for multi-level personalization:Converging Branches
Both branches can lead to a shared action:Exit Branch
One branch continues the flow while the other exits:After Branching
Both branches can continue with any combination of:- More actions (emails, SMS, DMs, tags)
- More delays
- More conditions (nested branching)
- Go-to-Flow (redirect to another flow)
Practical Examples
Release Day Segmentation
Channel Routing
Tour Ticket Follow-Up
Tips and Best Practices
- Keep it simple: One or two conditions per flow is ideal. If you need five nested conditions, consider splitting into multiple flows connected by Go-to-Flow.
- Test both branches: It is easy to build and test only the Yes path. Make sure the No path works too.
- Use fan-action delays before conditions: “Wait 3 days, then check if they opened the email” is a powerful pattern. The delay gives the fan time to act.
- Name conditions clearly: When you look at the canvas, the condition text should tell you exactly what it checks without opening the modal.
- Avoid dead-end branches: Even if one branch does less, at least tag the fan or add a note — this helps with future segmentation.
- Check execution logs: If fans are taking the wrong branch, the execution logs show which path each fan took and why.

