In this article, I’ll share a simple toolkit to create a bot you can deploy inside Salesforce. Installation should be about 3 minutes.
Bots provide a new way to interact with information. Instead of having to navigate through menus or switch between applications to get the information you need, they allow you to ask questions formulated in natural language using either your voice or text you type in an instant messaging-like interface. It’s like chatting with a smart friend: you ask questions and you get answers, without switching context.
Siri, Alexa, Facebook Messenger and Slack bots have made this new way of accessing information popular. Because the Salesforce platform is API first, it’s easy to make these bots work with Salesforce data. There are plenty of examples out there, including some that I have shared in recent months (see the resources section at the bottom of this article).
The same type of conversational interaction can also be useful inside a large application like Salesforce to provide quick access to information without leaving the task you are currently performing. The new Utility Bar in Spring ’17 offers the ideal opportunity for a bot-like component as components hosted in the Utility Bar are always at your fingertips.
Watch the video below to see the bot in action:
The Bot Toolkit is made of:
Let’s explore how it all works in more detail.
The Bot Toolkit uses a custom object (Bot_Command) to store bot commands. A bot command represents a mapping between a regular expression (that provides a pattern for a user question) and an Apex handler class (that provides the logic to generate the response).
For example, a Bot_Command record may look like this:
Pattern | Apex Class |
---|---|
(?i).*contact ([A-Za-z0-9]*) | HandlerFindContact |
With that command in place, a user can ask a question like “Find contact Lisa“, “Search contact Lisa“, or simply “Contact Lisa” (all matching the regular expression), and the Bot Toolkit will pass that request to the HandlerFindContact handler, providing “Lisa” as a parameter.
The Bot Toolkit comes with a series of standard bot commands and their corresponding Apex handler classes. You can add your own bot commands by adding records to the Bot_Command object and providing mappings between regular expressions and your own Apex handlers.
Note: Some of the Apex handlers are provided for demo purposes only and have hardcoded values or images.
The Bot Toolkit comes with a series of Apex Classes. The BotController class is orchestrating the conversation. It exposes the submit() method that the Bot component calls to submit a question. The submit() method is where the BotController will try to match what the user typed to a regular expression defined in one of the bot commands. If a match is found, the bot controller calls the handle() method in the corresponding handler class. Handler classes implement the BotHandler interface. A handler class uses a series of utility classes to format the response that is sent to the user: BotResponse, BotMessage, BotMessageButton, BotItem, BotRecord, BotField.
In addition to straight question/answer interactions, the Bot Toolkit also supports stateful conversations using a session object that represents the state of the conversation and that is passed back and forth between the server and the client. Take a look at the HandlerAddTwoNumbers and HandlerTravelApproval classes for examples of stateful conversations.
The handle() method of a handler class returns a BotResponse object. A BotResponse is made of one or several BotMessage objects and an optional session object. A BotMessage can contain a plain text message, a list of items, a list of records, a list of postback buttons, or an image. The Bot component formats messages in different ways to best represent the content of each message. The table below provides a few examples:
Plain text message |
![]() |
Message with list of items |
![]() |
Message with list of records |
![]() |
Message with postback buttons |
![]() |
Message with image |
![]() |
Follow the instructions below to install the Bot Toolkit in your org:
You can also install the component in any other Lightning Application, for example the Sales application.
Bots allow you to quickly access information using natural language and without switching context. The Bot Toolkit shared in this article is provided as an example of an interesting Lightning Component powered by a small Apex framework. While this is not an official Salesforce project, you can get the source code from this repository. Feel free to contribute, or comment below.