Watson Assistant - Carousel

Watson Assistant - Carousel

With Blahbox, it's possible to send a carousel to the virtual assistant's user using IBM's Watson Assistant.

To make Blahbox display a carousel, the JSON code below must be pasted in the "context" of the appropriate dialog node, in Watson Assistant.


  1.       "bbox_carousel": {
            "items": [
              {
                "title""item title 1",
                "textToSend""I want item 1",
                "description""item description 1"
              },
              {
                "title""item title 2",
                "textToSend""I want item 2",
                "description""item descritcion 2"
              },
              {
                "title""item title 3",
                "textToSend""I want item 3",
                "description""item description 3"
              }
            ],
            "order"1
          }


JSON Description

bbox_carousel


items

Every item represents an image of the carousel. You can place as many items as you wish, although it's not recommended to place more than five.

title

Title of the image

imageUri

URL of the image that you wish to display

textToSend

When the user clicks on the text, the text in that element is automatically sent to the assistant.

description

Description of the image

order

Whole number that shows the order of the element when there is more than one element


It's very important that the JSON code be inside the "context" element of the dialog node.

Blahbox interprets every element of the JSON and shows it to the user as is shown below:

    • Related Articles

    • Watson Assistant - Suggestion Chips

      With Blahbox, it's possible to send Suggestion Chips (Buttons) to the virtual assistant's user using IBM's Watson Assistant. To make Blahbox display Suggestion Chips, the JSON code below must be pasted in the "context" of the appropriate dialog node, ...
    • Watson Assistant - List

      With Blahbox, it's possible to send a list to the virtual assistant's user using IBM's Watson Assistant. To make Blahbox display a list, the JSON code below must be pasted in the "context" of the appropriate dialog node, in Watson Assistant:     ...
    • Watson Assistant - Link Out

      With Blahbox, it's possible to send a Link Out Button to the virtual assistant's user using IBM's Watson Assistant. To make Blahbox display a Link Out Button, the JSON code below must be pasted in the "context" of the appropriate dialog node, in ...
    • Watson Assistant - Card

      With Blahbox, it's possible to send a Card to the virtual assistant's user using IBM's Watson Assistant. To make Blahbox display a card, the JSON code below must be pasted in the "context" of the appropriate dialog node, in Watson Assistant: ...
    • Dialogflow - List

      A List is a type of response that a virtual assistant trained with Dialogflow can send to the user in order to improve the usability experience using a list of items shown one below the other. Click here for more information. ...