Creating a transition

Create transition form
Trigger types
Intent (LLM-evaluated)
The routing LLM reads the condition text and decides whether the customer’s last message matches it.Rule (expression)

- Logic:
AND(all conditions must be true) orOR(any one is enough) - Conditions: one or more rows, each with a variable, operator, and value
Built-in variables available in every expression (populated automatically per call):
You can also reference any variable captured via transition parameters (see Inline data extraction) or passed in
recipient_data when the call was created.
Example — route to transfer after 2 failed attempts on a node:
Set _node_turns gte 2.
Example — route to after-hours node outside 10 AM–6 PM:
Logic: OR
recipient_data.current_hourlt10recipient_data.current_hourgte18
Always (unconditional)
Takes this transition on every routing evaluation, regardless of what the user said. Use when a node has exactly one possible next step.Event
A fourth trigger type — Event — fires only when a matching external event arrives via the Bolna REST API, not during speech routing. It is used for payment webhooks, form submissions, and other external signals. See Event injection for the full reference.Edge inspector
Click any transition arrow on the canvas to open the edge inspector.Fields
Priority
When a node has multiple deterministic transitions (Rule or Always), they are evaluated in ascending priority order. The first one that matches fires. Use distinct priorities to make evaluation order explicit — e.g. priority0 for the retry escalation check, priority 1 for the after-hours check.
Parameters (inline data extraction)
Intent transitions can capture typed values from the user’s reply during routing. Add a parameter name and type (e.g.order_id: string). After the transition fires, the value is available as {order_id} in node prompts and as a variable in expression rules. To add parameters, expand the Advanced (optional) accordion in the edge inspector and use the Extract parameters section — see Inline data extraction.

