Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Text bot response control

Use the Text bot response control in a Virtual Agent topic to display a bot response as text. You can format the Text bot responses using the text editor controls. For example, you can bold or italicize the text, as well as include links, bulleted lists, and emojis.

Text bot response properties

Use the Text response properties panel to design bot responses to the user.

Image omitted: bot-text-response.png
Bot text response properties.
PropertyDescription
Node nameName that identifies this Text bot response node in the topic flow.
Response message

The Text bot response to the user. The response can be one of the following:- Rich text message. - Script, which can include Glide record variables or script variables.

Note: The script can also include a temporary password for the end user.

You can format the text messages using the text editor controls. For example, you can use the icons on the Response Message field to bold or italicize the text, as well as include links, bulleted lists, numbered lists, and emojis.

Image omitted: rich-text-response-message-options.png
Text bot response message options: Open an incident in the Support Portal, or call for immediate assistance.</p>

You can also include an input variable, such as a temporary password, in the response message.

Image omitted: temp-password-text-bot.png
Temporary password text response message.</p>

To include a link, do one of the following:

  • Select the link icon:
    Image omitted: link-icon.png
    Link icon..</li>
  • Add your response message. Select the text to use as a link, and then select the link icon.

Fill in the fields in the Confirmation window. Enter the text to use as the link, and then enter the URL in the Link field.

Enter the display label for the link and a static URL, or use the data pill picker to create a dynamic URL.

Add alternate messageAdd one or more alternate response messages for the user. Virtual Agent randomly chooses one of your responses for each conversation.
Image omitted: rich-text-response-multiple-message-options.png
Three defined alternate response messages: "User, sounds great," "Excellent choice," and "Let's proceed with Chosen Option, then."
Shorten responses
EnableWhen turned on, long bot responses are shortened. A Show more link is shown along with the truncated response. When the option is turned off, the entire response is used. By default, this option is turned on.
Make this response secure
EnableWhen enabled, the bot response is displayed to the user, but thereafter securely masked and not viewable by others.
Request feedback
EnableWhen turned on, thumbs up and down icons are displayed next to bot responses for feedback.
Hide this node
Conditionally show this node ifA no-code condition statement or low-code script that specifies a condition for presenting this node in the conversation. The condition must evaluate to true.

Channel support

ChannelSupportConstraints
Web UISupportedNone
Mobile UISupportedNone
Now Assist panelSupportedNone
Microsoft TeamsSupportedNone
SlackSupportedNone
WorkplaceSupportedNone
Facebook MessengerSupportedPlain text string only
SMS TwilioSupportedNone
LINESupportedNone
WhatsAppSupportedNone
Apple Messages for BusinessSupportedNone
Alexa (Voice)SupportedFor screen devices, full support. For nonscreen devices, the header is read.

Example Text bot response script

In this example, the script returns a string that greets the user. The gs.getUser().getFirstName() property is used to append the first name of the current user.

(function execute() {
    return 'Hello ' + gs.getUser().getFirstName();
})()

In this example, the script returns links to three instances in the response. Use Markdown to include multiple links in the script.

(function execute() {
    var output = 'Hello\n';
    output += '\n- [Instance 1](http://instance1.com)';
    output += '\n- [Instance 2](http://instance2.com)';
    output += '\n- [Instance 3](http://instance3.com)';
    return output;
})()

Example Text bot response control

Note: Assistant Designer controls may display and function differently in other channels.

Response propertiesText bot response output
Image omitted: va-rich-text-bot-properties.png
Basic properties include the node name and a rich text response message area.
Image omitted: rich-text-example-web-ui.png
Text response with emojis that reads, "We could not find any assets currently assigned to you." A phone number, additional steps, and a link are included.

Parent Topic:Assistant Designer bot responses