Quick Start
What is respond.io?
Setting Up an Account
Connecting Channels
Inviting Your Teammates
Getting Contacts to Message You
Automated Welcome and Away Messages
Responding to Messages
Glossary of Terms
Channels
WhatsApp Business API Quick Start
Getting Ready for Inbound Conversations
Getting Ready for Promotional Messaging
WhatsApp Official Business Account (Green Tick)
Grow your WhatsApp Audience by Maximizing Entry Points
Get WhatsApp API Account for Government Agencies
Meta Business Verification
WhatsApp Message Templates
WhatsApp Pricing
WhatsApp Business API Channel Configuration
WhatsApp Messaging Limits
Change Your WhatsApp Business Display Name
Migrating from WhatsApp Personal or WhatsApp Business App
Phone Number Migration to respond.io WhatsApp Business API
Turn-off WhatsApp Number Two-Step Verification
WhatsApp Cloud API
360dialog WhatsApp
Twilio WhatsApp
MessageBird WhatsApp
Vonage WhatsApp
Phone Number Migration to WhatsApp Cloud API
Facebook Messenger
Facebook Messenger Overview
Facebook Messenger Quick Start
Facebook Chat Plugin
Facebook Private Replies
Facebook Message Tag
LINE
Viber
Telegram
Google Business Messages
Website Chat Widget
Website Chat Widget Overview
Website Chat Widget Quick Start
Install Website Chat Widget on WordPress
Install Website Chat Widget on Shopify
Install Website Chat Widget on Wix
Install Website Chat Widget on Joomla
Install Website Chat Widget on Squarespace
SMS
Custom Channel
Channels Overview
Product
Dashboard & Reporting
Dashboard
Reports Overview
Reports: Conversations
Reports: Responses
Reports: Resolutions
Reports: Messages
Reports: Contacts
Reports: Assignments
Reports: Leaderboard
Reports: Users
Reports: Broadcasts
Messages
Contacts
Contacts Overview
Contact Details
Merge Suggestions
Contact Activity
Contact Channels
Contact Import
Segments
Broadcasts Module
Workflows
Workflows Overview
Workflow Triggers
Workflow Steps Overview
Step: Send a Message
Step: Ask a Question
Step: Assign To
Step: Branch
Step: Update Contact Tag
Step: Update Contact Field
Step: Open Conversation
Step: Close Conversation
Step: Add Comment
Step: Jump To
Step: Wait
Step: Date & Time
Step: HTTP Request
Step: Add Google Sheets Row
Dynamic Variables
Workspace Settings
Managing a Workspace
Workspace Settings: General
Workspace Settings: Users
Workspace Settings: Teams
Workspace Settings: Channels
Workspace Settings: Contact Fields
Workspace Settings: Integrations
Workspace Settings: Closing Notes
Workspace Settings: Snippets
Workspace Settings: Files
Workspace Settings: Data Export
Workspace Settings: Data Import
Workspace Setting: Respond AI
Workspace Settings: Growth Widgets
Organization Settings
Organization Overview
Organization Settings: General
Organization Settings: Users
Organization Settings: Workspaces
Organization Settings: WhatsApp Fees
Organization Settings: Billing & Usage
User Account
Mobile App
Installing respond.io Mobile App
Messaging From Your Mobile
Managing Notifications On Your Mobile
Configuring Mobile App Settings
Help Menu
Handling Inbound Conversations
Managing Spam
Create Automated Welcome and Away Messages
Get Contacts’ Consent for Personal Data Collection
Create Automated Chat Menus
Collect Contacts’ Emails and Phone Numbers
Route Contacts by Shifts
Route Contacts by Team Functions
Route New & Returning Contacts
Route VIP Contacts
Assignment Strategy: Automatic Contact Distribution & Load Balancing
Assignment Strategy: Unassign Agents after Conversations Closed
Support Use Cases
Inbound Support: Identify Contacts by Email and Phone Number
Inbound Support: Enrich Customer Data from a CRM or other Business Software
Inbound Support: Route Customers to the Right Team Automatically
Inbound Support: Auto-Assign Customers to a Team or Dedicated Agent
Send Outbound Support Messages
Support: Closing Conversations
Supervising Your Support Agents
Reporting for Support
Send CSAT to Customer and Save Data in Google Sheets or CRMs
Sales Use Cases
Inbound Sales: Collect Leads' Email and Phone Number
Inbound Sales: Enrich Contact Data and Qualify Leads
Inbound Sales: Routing Leads
Inbound Sales: Auto-Assign Leads to Sales Agents
Sending Outbound Sales Messages
Track Productivity by Closing Conversations
Supervising Sales Agents
Reporting for Sales
Broadcasts Use Cases
Sending a Simple Broadcast
Start a Workflow Based on Broadcast Response
Troubleshooting a Failed Broadcast
Integrations
Dialogflow
Dialogflow Overview
Dialogflow: Connecting to Dialogflow
Dialogflow: Creating a Chatbot
Dialogflow: Managing Intents
Dialogflow: Parameters
Dialogflow: Events
Dialogflow: Response Templates
Dialogflow: Custom Payloads
Dialogflow: Fulfillment Webhook Request
E-Commerce & CRM Integrations
E-Commerce Integration: Shopify
E-Commerce Integration: BigCommerce
E-Commerce Integration: WooCommerce
E-Commerce Integration: Magento
CRM Integration: HubSpot
CRM Integration: Salesforce
CRM Integration: Pipedrive
CRM Integration: ActiveCampaign
Zapier
Make (formerly Integromat)
Developer API
Webhooks
Partnership
We love to hear from you!
Table of Contents
- Home
- Product
- Workflows
- Step: Branch
Step: Branch
Updated
by Shing-Yi Tan
This Step creates Contact journeys based on Branch conditions.

Configuration
Branches
When creating a Branch, you can include 1-9 other branches along with an Else Branch.
Branch Conditions
A maximum of 10 conditions with either AND or OR logical operators are allowed per branch. Each condition needs a defined category, operator and value.
The categories available within a condition include:
- Contact Field (inclusive of all Custom Fields)
- Contact Tags
- Variables (inclusive of trigger variables and output variables from the Shortcut form)
- Assignee Status
- Last Interacted Channel
- Last Incoming Message
- Last Outgoing Message
- Last Outgoing Message Source
- Time Since Last Incoming Message
- Time Since Last Outgoing Message
- Assignee Status
Once the branch is configured, if required, you can clone it by selecting the Clone icon. The cloned branch is a sibling branch that includes the categories and conditions selected in the original branch. However, you can further edit the branch if required. The cloning feature saves the time and effort required to recreate branches from scratch.
Selecting a Branch Operator
In a Branch Step, the branch operator is used to evaluate conditions and decide which branch to follow. When setting up the Branch Step, you select the branch operator, which is used to compare a variable or value with a specific condition. The choice of branch operator depends on the condition you want to evaluate in the Branch Step.
Here's a table to guide you in choosing the right operator for evaluating conditions.
Operator | Description | Example |
Is equal to | Checks if two values or expressions are equal to each other. | 3 is equal to 3 (returns true) |
Is not equal to | Checks if two values or expressions are not equal to each other. | 3 is not equal to 4 (returns true) |
Is greater than | Checks if one value or expression is greater than another value or expression. | 5 is greater than 3 (returns true) |
Is less than | Checks if one value or expression is less than another value or expression. | 3 is less than 5 (returns true) |
Is between | Checks if a value or expression is within a certain range of values. | 5 is between 1 and 10 (returns true) |
Exist | Checks if a value or expression exists. | The variable x exists (returns true) |
Does not exist | Checks if a value or expression does not exist. | The variable y does not exist (returns true) |
Contains | Checks if a string or collection of items contains a certain value. | "Hello world" contains "world" (returns true) |
Does not contain | Checks if a string or collection of items does not contain a certain value. | "Hello world" does not contain "universe" (returns true) |
Has none of | Checks if a collection of items has none of the specified values. | [1, 2, 3] has none of [4, 5, 6] (returns true) |
Has all of | Checks if a collection of items has all of the specified values. | [1, 2, 3] has all of [2, 3] (returns true) |
Has any of | Checks if a collection of items has any of the specified values. | [1, 2, 3] has any of [2, 4, 6] (returns true) |
How It Works
Contact journeys are determined according to the conditions specified in a Branch. They will be directed along different paths within the Workflow, allowing for personalized interactions based on their responses or other criteria.
Branch conditions act as decision points and ensure Contacts receive the most relevant and suitable communication along their journey.
If not all conditions are met, Contacts will be redirected to the Else Branch to enter a separate journey.
Best Practices
Here’s a best practice for this step you can follow to optimize your workflow:
- Give your Branch a name to help you visualize the Step better without having to open the configuration of the Step.
Suggested Use Cases
Here are some ways you can use the Branch Step:
- Route New and Returning Contacts: Differentiate and manage new and returning Contacts separately to address their unique needs and expectations. This provides a personalized customer experience for returning Contacts and helps capture new Contacts’ attention, turning them into loyal patrons.
- Route VIP Contacts: Identify VIP Contacts for a personalized customer experience and distinguish them from non-VIP Contacts. This allows highly skilled agents to address VIP customers’ specific needs, leading to improved customer satisfaction and loyalty.
Feeling stuck? Do not fear.
Need assistance? Contact us for support. Help is here!This is the text block that will appear when the button is clicked.
Step: Assign To
Step: Update Contact Tag
Related Articles
Step: Wait
Learn about the configuration and use cases for implementing the Wait Step.
Step: HTTP Request
Learn about the configuration, best practices and use cases for implementing the HTTP Request Step.
Step: Date & Time
Learn about the configuration and use cases for implementing the Date & Time Step.