With Blahbox, it's possible to send a Link Out Button to the virtual assistant's user using Amazon Lex.
To make Blahbox display Link Out Button, the JSON code below must be pasted in the "Custom Markup" of the appropriate "Response", in Amazon Lex Console:
JSON Description
|
|
bbox_linkOut |
|
uri | URL to link out
|
destinationName | Button Label |
order | Integer number that shows the order of the element when there is more than one element |
Blahbox interprets every element of the JSON and shows it to the user as is shown below:
Related Articles
Integrate Amazon Lex
This article will help you set up Amazon Lex in Blahbox. To access the Amazon Lex trained bot, you must first of all obtain certain information from the AWS platform Data required: User Credentials Bot name, Alias and Version Region Link ...
Amazon Lex - Link Out - Lambda
With Blahbox, it's possible to send a Link Out to the virtual assistant's user using Lambda. Code for Lambda function: exports.handler = (event, context, callback) => { var bboxResponse = {}; bboxResponse = { "bbox_linkOut": { ...
Amazon Lex - Card - Lambda
With Blahbox, it's possible to send a Card to the virtual assistant's user using Lambda. Code for Lambda function: exports.handler = (event, context, callback) => { callback(null, { "dialogAction": { "type": "Close", ...
Amazon Lex - Carousel
A Carousel is a type of response that a virtual assistant trained with Amazon Lex can send to the user in order to improve the usability experience using images as a Carousel. Click here for more information. ...
Amazon Lex - Card
A Card is a type of response that a virtual assistant trained with Amazon Lex can send to the user in order to improve the usability experience using images. Click here for more information. When Blahbox detects a Card, it interprets and ...