Amazon Lex - Link Out

Amazon Lex - Link Out

With Blahboxit's possible to send a Link Out Button to the virtual assistant's user using Amazon Lex.


To make Blahbox display Link Out Buttonthe JSON code below must be pasted in the "Custom Markupof the appropriate "Response", in Amazon Lex Console:


  1.  {
  2.  "bbox_linkOut": {
  3.       "uri": "https://blahbox.net/",
  4.       "destinationName": "Link to Blahbox"
  5.     }
  6. }

JSON Description



bbox_linkOut
uriURL to link out
destinationNameButton Label
orderInteger 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 ...