
Answers are the building blocks for your conversation bot. An answer consists of a sequence of steps that are created and configured by you in bot builder, or that are part of a bot's out-of-the-box behavior. Each step represents a message the bot is able to show to your customer during a conversation.
This article discusses the following step types:
- Send message
- Present options
- Show help center articles
- Add carousel
- Ask for details
- Ask if question resolved
- Make API call
- Transfer to agent
- Branch by condition
- Add business hours condition
After getting to know the elements here, you can create a bot and begin building it using answers.
Send message
The Send message step displays a piece of text to the customer during a conversation.
Usage
The Send message step inserts a predefined piece of text into the conversation. It can be a greeting, useful information about your business, or an automated direct reply in response to end user free-text messages and quick reply option selection.
Configuration rules
Send message steps can be added anywhere in your answer. After they're displayed, they move the conversation immediately to the next step in the answer's flow.
You can add the following content elements to the bot message in this step:
Bot builder view | Customer view |
---|---|
![]() |
![]() |
Example
In the example below, the customer entered “Receiving error ‘unsupported platform’” which triggered the automated reply about supported platforms. That reply was configured in the bot builder as a Send message step; the conversation bot assessed the customer's free-text entry, identified that preconfigured message as the most likely to address the customer's needs, and moved the conversation to that step:

Present options
The Present options step displays up to 10 preconfigured quick replies that the customer can interact with during a conversation.
Usage
This step displays up to 10 preconfigured quick reply options that can be offered to your customers during a conversation, allowing them to select a likely response rather than typing it in.
These options can be used to represent commonly-asked questions, branch the conversation, or help your customers navigate through a conversation with your bot. You can drag-and-drop options in the Configuration panel to reorder them.
Configuration rules
You cannot end an answer flow with a Present options step. It must be followed by one of the other step types, which must also be configured before you can publish and move on to another step. In the example below, three options are followed by a Show help center article step, and one by a Transfer to agent step.
You can add the following content elements to the bot message in this step:
Bot builder view | Customer view |
---|---|
![]() |
![]() |
Example
In the example below, a customer is contacting a scooter sales and rental company. Because the company knows that most customers want information on buying, selling, or renting a scooter, after the initial greeting they immediately offer three options:
Note that as a result of conversational shortcuts, typing the message “I want to buy a scooter” in the example above will have the same effect as clicking the quick reply.
Show help center articles
The Show help center articles step presents up to six help center articles to the customer during a conversation. If you have public and restricted articles (articles requiring end users to sign in), you can configure which articles to show anonymous (unauthenticated) end users and which to show for authenticated end users. See Suggesting restricted help center articles in a bot answer for more information.
Usage
Configuration rules
Example
In the example below, the customer selected a quick reply option, "I want to buy a scooter", and received a specific article recommendation in response, which also included the text responses prior to the recommendation:
Add carousel
The Add carousel step displays up to 10 informational panels the customer can scroll through, each with a link to an external URL.
Usage
The Add carousel step inserts an array of panels into an answer step. Each panel displays configurable text and an interactive link. After the carousel is displayed, it moves the conversation immediately to the next step in the answer. The customer interacts with the carousel using the right and left arrow icons to scroll through the panel array. They can interact with the carousel at any time during the messaging conversation, after the step is reached.
Configuration rules
Carousels can be added anywhere in an answer flow.
A carousel must a minimum of 2 and a maximum of 10 panels.
Each panel must include:
- A title
- A complete URL
- Text for the button link
You can add the following rich content elements to the bot message in this step:
Bot builder view | Customer view |
---|---|
![]() |
![]() |
Ask for details
The Ask for details step collects information from an end user during the conversation.
Usage
Customer responses are automatically saved as variables. See the example below for how you can configure order tracking using this step.
Configuration rules
Ask for details can be added anywhere in your answer. The step must include:
- A name to identify the step. This won’t be visible to your customer but will help your team to identify the step.
- Ticket fields (text or dropdown types) to capture customer data such as name, email, and any other information that can be helpful to collect to power the rest of the conversation.
- Custom ticket fields must be created in Admin Center before you can add them to the step.
- Permissions for ticket fields must be set to Editable for end users, and will be Required to submit a request by end users, regardless of the requirement configuration on the permissions page.
- Nested dropdown fields are not supported.
Bot builder view | Customer view |
---|---|
![]() |
![]() |
Example
In the following example, the bot captures order information for the customer and displays the shipment status of the order.
Ask if question resolved
The Ask if question resolved step type asks your end users whether an answer resolves their support issue, and offers response options they can choose from.
Usage
The Ask if question resolved step provides a way to capture end user data to measure how well each answer is performing, and indicates which answers can be refined and optimized.Note: Explore reports capturing the number of sent feedback requests, as well as the number and types of responses left by end users, will be available later this year.
The step type inserts a piece of text into the conversation, followed by two quick response-style options, which are in turn each followed by a message or additional step.
Configuration rules
This step cannot be the first step in an answer, and cannot be added after a Transfer to agent step.
By default, when you insert this step into an answer the following text appears in each element:
- “Was this helpful?” (Question resolved bot message)
- “Yes, problem solved” (Resolved response)
- “No, I still need help” (Unresolved response)
- “Great. Knowledge is power. You can ask me another question at any time.” (Follow-up message to resolved response)
- ”Got it. Try rephrasing your question.” (follow-up message to unresolved response)
These elements must be present in the step for the answer to be published successfully.
The text above can be customized as needed. Additionally, the follow-up messages can be deleted and replaced by other step types.
While the text in the Question resolved and response messages is customizable, the resolution status by end user’s responses is fixed. That is, when the end user selects the first/left hand option (“Yes, problem solved”) it is considered a positive, or resolved response. The second/right hand option is captured as a negative, or unresolved response (for example, “No, I still need help”).
Bot builder view | Customer view |
---|---|
![]() |
![]() |
Make API call
The Make API call step can be used to push conversation details out to your CRM, or pull product information into your bot messages, and more.
Usage
This step is used when you want the bot to present external data in its response such as retrieving movie reviews from IMDB’s API or push data into an external end-point such as Amazon Event Bridge or Google Analytics. It is especially useful when a customer requests information that may be updated regularly or is particular to them, such as system status or current wait time for assistance. It can also be used to send events for analytics or tracking purposes, for example emitting events to Google Analytics or Pendo.
Configuration rules
API call steps can be added anywhere in your answer flow. Adding this step splits the flow into two branches:
- If success, which appears when the external source is queried and supported information is returned.
- If failed, which appears when the API call fails, due to a client or server error, or if the response is not supported by the bot builder.
Information returned from the queried source must be in JSON format, and be less than 2MB.
Admins must include the following information in the step configuration:
-
Supported HTTP request method. Supported HTTP request methods are GET, POST, PUT, PATCH, DELETE
- POST, PATCH and PUT must include a Body field sent with request
- GET and DELETE operations do not have a Body field.
- Endpoint URL, the URL of the external source.
Admins must add step type after each branch before publishing the flow.
Admins can create variables during the configuration of this step that can be used when creating bot messages subsequent to this step. Only the first 280 characters of a variable's value appear in the response displayed in the messaging conversation.
The Add an API call step has a number of configuration options that may require assistance from a developer on your team. See Using the Make API call step for more information.
Example
Let's say the customer selects the quick reply option “Zendesk office location” which triggers the Make API call step. The API call is configured to get the information from Google’s Places API.
If the external system returns a response, the Success branch is triggered, and the information is inserted into the response framework created by the admin, and presented to the end user.
If a response is not returned, or the response is not supported by the bot builder, the Failed path is taken, and fallback behavior defined by the admin is presented to the end user.
You can use the following URL as an endpoint to test the Make API call step:
https://run.mocky.io/v3/19e020de-4ee1-47f7-94ea-d68df3c4df71
For an example answer using the Make API call step, see Messaging recipe: Getting external data with a conversation bot.
Transfer to agent
The Transfer to agent step escalates the conversation to an agent.
Usage
Add this step to hand off the conversation to a human agent.
Configuration rules
In this step, you can configure:
- A final message to send before transferring a customer to an agent.
- Tags that are added to the ticket created when the conversation is transferred. They can be used in ticket routing and other business rules. See About tags.
- You can add up to 10 tags to each Transfer to agent step in an answer.
- Each tag can be up to 80 characters.
- Spaces and special characters such as #, @, and ! aren't allowed in tags.
You can add the following content elements to the bot message in this step:
Transfer to an agent is an end step, which means it is the last step in the conversation, and you cannot add any more steps after it. As part of this step – unseen by the customer – a ticket is created, which includes their conversation history to help the agent address the issue.
Bot builder view | Customer view |
---|---|
![]() |
![]() |
Example
The customer has chosen a quick reply option that indicates they need assistance with upgrading their plan, which requires agent involvement.
Branch by condition
The Branch by condition step adds conditional logic to an answer flow. You can use the logic to personalize a conversation based on an end user's data.
Usage
A Branch by condition step consists of two or more branches. A branch can have one or more conditions. When run, the step compares the conversation's variables to the conditions for each branch. If a branch's conditions are met, the conversation follows the branch's steps.
Configuration rules
You can add a Branch by condition step anywhere in an answer flow.
-
If this: If the branch's conditions are met, the conversation follows the branch's steps
- Else: If the conversation doesn't match the conditions of any other branch, the conversation follows this branch's steps. You can't remove this branch.
You can add up to four additional branches, to a maximum of six branches.
Each condition includes a variable, an operator, and a value. You can also nest conditions to create more complex conditional logic.
Admins can’t create or update variables in a Branch by condition step.
Branches are checked in the order they're included in the step. If conditions for more than one branch are met, the answer flow follows the first matching branch.
For more information, see Understanding the Branch by condition step in bot builder.
Example use cases
- You can use an Ask for details step to collect data from an end user as variables. You can then check this data against conditions in a Branch by condition step. The Branch by condition step determines whether the user is sent to a Transfer to agent step or a Show help center articles step.
- You can use a Make API call step to get a package's delivery status from an external API. You can then use the Branch by condition step to display different messages based on the status.
- You can use the Branch by condition step to send different responses based on an end user's VIP or membership status.
Add business hours condition
The Add business hours condition step lets you use your schedule to branch the conversation.
Usage
This step can be used to configure the bot to respond differently based on your business availability. Adding this step will split the answer flow into two branches:
- when open, which appears to the end user during scheduled business hours
- when closed, which appears to the end user outside of scheduled business hours
Configuration rules
You must set a schedule in order to include a business hours condition step. Once you have set a schedule, you will see a preview of your business hours in the configuration panel, to indicate when customers would be sent down the open or closed branch depending on the time of day. Note that holidays are not shown in the preview, but will be respected by the condition.
If you have set multiple schedules (available on Enterprise plans only), a dropdown will appear in the configuration panel to select the appropriate schedule.
You cannot end an answer flow with a business hours condition step. It must be followed by one of the other step types, which must be configured before you can publish. In the example below, the business hours condition step is followed by a Transfer to agent step in both the open and closed branch. The message content is configured differently in each branch.
Bot builder view | Customer view (When open) | Customer view (When closed) |
---|---|---|
![]() |
![]() |
![]() |
Example
In the example below, the agent transfer step is configured differently when open and closed to explain what will happen next in each context:
End user experience during business hours | End user experience outside of business hours |
---|---|
![]() |
![]() |
77 Comments
Can you add a feature for exporting to PDF or share to email for colleagues?
If I have live chat enabled, how will answer bot be incorporated? Will there be a hand off from bot to chat or vice versa or how does it work?
How can I measure tickets that are not transferred to agents in explore
Is there a limit on the number of values in a drop-down that can be displayed as a ticket field (in the Messaging widget?)? I have a drop-down field with about 160 values and on the widget, it only shows ~20 or so.
Hi @...,
Thanks for your feedback. Much appreciated! We have plans to increase the number of dropdown values we support within the messaging widget. Unfortunately, I don't have an exact timeframe on this but will be sure post an update in here once it's been actioned.
Thanks,
- Miranda.
Hi,
is there already a plan to increase the limit for dropdown menu values?
This is currently our showstopper and we can not continue implementing the new answer bot with that limitation.
Hi @...,
Yes, we have plans to increase the limit of dropdown menu values to 150 or so. This is something that's currently on the roadmap and should be available within the next couple of months.
Stay tuned!
- Miranda.
Hi.
We've been having problems with customers getting stuck at the end step and not being able to exit the transfer to agent "flow". Is there any way to have a callback to start over from the top again? This currently holds us back from enabling the transfer to agent step as it renders the rest of the answer bot/flow builder unusable until an agent deletes the ticket.
Can we have the flow offer different options to different user segments? We'd like to customize based on the type of user is interacting with us and keep some options confidential based on who is interacting with the bot
Is there a way to start over the whole flow after opting for a agent handover in the flow builder?
Hi Sam,
The bot does not automatically send the first message in a subsequent conversation after agent handover. Once the agent has closed the associated ticket, and the conversation is handed back to the bot, the returning customer must send a message to initiate a response from the bot. The bot will then attempt to find a conversational shortcut and respond according to normal free-text entry behavior.
Does that help? I'm curious to hear your feedback on this experience and the desired experience you had in mind.
Hi Heather,
That isn't possible with Flow Builder currently, however we're looking into ways to allow admins to personalize the flow based on user data as part of our 9 month roadmap. Thanks for your feedback I have captured your use-case for consideration.
Hi Fredrik,
It is expected behavior that once the conversation is handed over to an agent, the bot can no longer participate in the conversation with the customer until the agent has closed the ticket. This document has more details. Having said that the ability to support multiple concurrent conversations is in the 9 month roadmap for messaging and Flow Builder.
Hi,
It seems like there is a conflict between adding a "business hours" condition and the "continuous conversation" setting.
In our account we have both (see screenshot widget):
- a business hours condition for chat as described in the article above (numb. 1 in screenshot)
- continuous conversation setting enabled (numb. 2 in screenshot)
As you can see, this is not the best experience:
1: Customer receives a message because he started a conversation outside of business hours.
2: Customer receives another (automated message) that we are offline (because of the continuous conversation setting).
So the second message isn't necessary => Ofcourse we are offline because it's outside of our business hours...
Any suggestions on how we can make this customer experience better?
Hi Thomas,
Thanks for the feedback. To avoid the unnecessary second message as you point out you can disable the trigger from Chat Triggers > Continuous Conversations. The setting itself needs to remain enabled. That setting is used for sending email for unread messages.
Daniel,
Thanks. Good to know. Is there an article that describes that? I didn't found that.
With the setting itself, you mean the checkbox in Support?
Hi,
Is there any "Go back to last option" button, looks like I have to duplicate the whole flow multiple times to make something like this happen for now.
@... I would also like help with this.
"Is there any "Go back to last option" button, looks like I have to duplicate the whole flow multiple times to make something like this happen for now."
We can put a link in the message we configure on answer bot?
How do you configure an option with the given flow builder steps to start the conversation over? In case the user selected the wrong option in a previous flow builder step.
Hi Rex Lai and AMU Cx Lead
We are currently looking at how to make it easier for the user to navigate to another answer by simply typing in their question but I'm keen to understand the use case with "go back to last option" and whether that could solve this problem.
Hi Dustin Swayne
It is currently not possible to configure a step to start over. The start over option is only available with the feedback step. However we have plans in future to make improvements in this area where the user can start from the beginning of the flow.
Hi
Wondering if it's possible to offer existing forms (multiple forms) as an option to select through Flow Builder.
Not exactly sure, but it looks like we have to rebuild our forms in Flow Builder if we want to use forms at all.
Cheers
Chad
At present, it's not possible to serve a ticket form directly via Flow Builder. Workarounds could include sending a link to a ticket form, or serve a Help Center article that explains how to contact your support team (which could include pointing the user to your help center's New Requests page). There's a thread in our product feedback forums that includes a request for the ability to serve ticket forms – would you mind adding your use case to the comments thread here (and upvoting the thread)? New feature requests: Answer Bot Feedback Flow Customization
Cool. Awesome workarounds especially the Help Centre direction...great idea. Thanks Dave :)
The one thing I can't figure out is how to add additional ticket fields to capture customer data, such as a phone number.
It sounds like it's possible, but whenever I go into the ticket field sections, it is not clear where I can 1) Add a phone number option
2) Make it available in the bot flow
Maybe it's obvious or maybe I misunderstood and it's not possible currently. Thanks!
You first need to add the text or drop down ticket field(s) to Zendesk: Adding custom fields to your tickets and support request form
When you create those fields, be sure to select "Editable for end users". Then return to Admin Center (you may need to refresh the browser tab that Admin Center is running in so it picks up the new ticket fields), and then when you're configuring a "Transfer to agent" step in Flow Builder, if you click on the "Search by title" field under Fields, the dropdown should display any Text or Drop Down ticket fields you've added that are set to Editable for end users.
Hope that helps!
@... Hi Dave,
Yes that helped. Those were the steps I was following, but it's nice to have it confirmed so I don't think I'm missing something. It seems the issue is I was trying to make a numeric custom field for a phone number. But even when doing the correct steps, it won't show up as available in the bot flow. But a custom text field does, so that should work!
Please sign in to leave a comment.