Banking
Last updated
Was this helpful?
Last updated
Was this helpful?
This chatbot can help users check their account balance, card limit, report a card as lost or stolen, and find the office closest to them.
Let's dive into how you can adapt this template for your business!
This template only uses to search for records. Learn how to set up your own Airtable integration .
In the introduction message, you can change the Botbank image to your own business logo. Make sure that the Quick Reply buttons cover your bot's use cases.
This Block uses a to create a better user experience and make the bot feel more natural. Have fun with it so that it matches your bot's persona!
This Block is where the conversation ends up when a flow is over. For instance, when the user is done checking their account, they will be asked if there is anything else that can be done to help them.
On the one hand, if users ask to check their card limit, and they get a different response depending on what card type they choose. Card types are defined under the cardtype
contextual entity in the NLP section. This flow is triggered either by a Quick Reply button or by the Card.Limit
intent.
On the other hand, if users ask to check their account balance, they can choose to check their current account or savings account. Those are defined under the accounttype
contextual entity. This flow is triggered either by a Quick Reply button or by the Check.Balance
intent. Once the balance is checked, the user is asked if they want to make a money transfer from that account. This redirects us to the Transfer money
flow where a Is account known?
Go-To block checks that the accounttype
variable is already filled before proceeding to the money transfer.
In this flow, users can make a one-time money transfer, or create a standing order.
Here, the bot first asks the amount to transfer, from which account, and finally the bank account number of the recipient. These values are stored as:
amount
: the amount to be transferred
accounttype
: the account from which the money is transferred
IBAN
: the recipient's account number
To check that the bank account corresponds to a correct IBAN format, we use a Condition block that verifies if the IBAN
exists. To do so, the bot checks that the entered IBAN matches the IBAN Regex pattern. In short, it verifies whether this is a valid IBAN. To see this pattern and adapt it to your needs, you can go in the Entities tab > Match Entities > @IBAN.
To set up a standing order, the bot first asks the user how often the payment should occur. This is stored under thefrequency
variable. After that, it asks for the the start and end date. To check if the user's input is a valid date, we check if the value matches "date" before saving it as the variables startDate
and endDate
. Here users can also add a reference in their transfer, stored under the reference
variable.
This flow allows users to report their card as lost or stolen. They are immediately redirected to external links to help block the card, after which they're asked if they want to order a new card. This flow is triggered by either a Quick Reply button or the Lost.Or.Stolen.Card
intent.
To find the nearest office locations, the conversation is steered to the Office locations flow.
You can customize the external links to redirect your users to your website and/or phone number.
In this flow are grouped all blocks meant to answer random questions like: Which cards do you offer?, How are you?, Who built this?, ... All those blocks are triggered by intents so that the bot can answer those at any time in the conversation. Make sure that you foresee many of them whilst building your bot so that the conversation flows smoothly!
This flow captures two use cases: checking an account balance, and checking a card limit. A spreadsheet for Accounts and another for Cards were created in an that was made by using the .
This flow is triggered when we want to show the user the office that is the closest to them. For the sake of this template, addresses are predefined within the block, but you customize yours following the that uses Google Maps.