How Filter routes
A Filter contains one or more ordered Cases and an Else fallback. It evaluates the cases from top to bottom and follows the first case whose conditions match. If no case matches, it follows Else. Case order matters. Put narrow or high-priority cases before broader cases that could match the same data.Configure Filter
Filter starts with Case 1. Select Add Case to create another route. Every case requires at least one condition.Define a condition
Each condition uses Field and Operator. Operators that compare values also show Type and a comparison value:
Select the field from Available Variables when the condition depends on dynamic data. Typing a variable name as plain text does not insert its value. Only variables available before Filter on the current route can be selected. See Variables for how the editor determines availability.
Choose a type that matches the data:
The available operators depend on the selected type:
- exists and doesn’t exist: Check whether Field has a value or is empty.
- is equal to and is not equal to: Compare Field with a specific value.
- Number comparisons: Compare a numeric Field with a specific value using greater than, greater than or equal to, less than, or less than or equal to.
- is an array containing: Check whether an array contains a specific item.
- matches condition (AI) and does not match condition (AI): Evaluate a natural-language condition against the conversation context.
Combine conditions
Select Add Condition to add another rule to a case. When a case has multiple conditions, choose how they work together:- AND requires every condition in the case to match.
- OR requires at least one condition in the case to match.
Connect the routes
Each case and Else appears as a separate route on the canvas. Connect each Case route to the path that should run when it matches, and connect Else to a safe fallback for data that is missing, unexpected, or not covered by a case. Deleting a case also removes its route connection. Review the canvas after changing the case list.Example: Route by risk and customer tier
Suppose a pre-call API request returnsrisk_score and customer_tier. Configure the cases in this order:
If an enterprise caller also has a risk score of 90, Case 1 wins because it appears first.
Troubleshooting
Filter follows the wrong case
Filter follows the wrong case
Open Call Details, select Blocks, and expand Filter to review the selected route and each condition’s result. Check whether an earlier case also matched, then confirm the case’s AND or OR setting, value type, operator, and comparison value. Move more specific cases above broader ones.
Filter always follows Else
Filter always follows Else
Confirm that the expected variables are available before Filter on the current route and were inserted from Available Variables. Then check for missing values or a type mismatch.
AI matching is inconsistent
AI matching is inconsistent
Run Filter only after the relevant conversation exists, and write one clear condition that can be judged from that context. Use a deterministic operator instead when structured data can express the rule.

