Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Below are the isthe web services service to call up to interact with the bot.

Asking a question

To ask a question (any type of text sent by the customer) to the Bot specify the standard "RFAQ" node in the request and pass the text of the question in the "hda_sematic_question" parameter.

...

https://engagent-demo4.h-care.eu/brain/old/autojson/enghouse-brain-bot/1/RFAQ?hda_semantic_question=test nodehello

Text Response:

...

languagejson

...

Type: JSON

The “node” object must contain the “contents” object. This object must contain the “content” array. This array of objects must contain the text response sent back to the customer. The “contentType” property identifies the content of the text response and can assume one of the following values:

  • “TEXT_CONTENT_RICH” for formatted text

  • “READABLE_PLAIN” for only plain text

The “text” property must contain the response sent back to the customer.

In “web” chat, the “TEXT_CONTENT_RICH” response (if present) will be considered, if not present the “READABLE_PLAIN” response will be considered.

In other chat types (whatsapp, messenger, instagram channel), the “READABLE_PLAIN” response will be considered.

Code Block
languagejson
{
   "node":{
      "serviceVersionbrain_id":"1n_22367",
      "contentsbrain_version":{"5.10.0-SNAPSHOT",
         "contentid":["n_22367_725744298",
      "key":"TEST_NODE_MSG",
     {
       "serviceName":"enghouse-brain-bot",
        "bargeinserviceVersion":"true1",
      "contents":{
         "brain_idcontent":"c_22367_3",[
            {
               "bargein":"true",
               "brain_id":"c_22367_3",
               "contentType":"TEXT_CONTENT_RICH",
               "id":"c_22367_3_41735189",
               "usePreviousText":"false",
               "text":"Questo è un contenuto di <b>test</b>."
            },
            {
               "bargein":"true",
               "brain_id":"c_22367_2",
               "contentType":"READABLE_PLAIN",
               "id":"c_22367_2_1418502948",
               "usePreviousText":"false",
               "text":"Questo è un contenuto di *test*."
            }
         ]
      }
   }
}

Menu Response:

Type: JSON

The “node” object must contain the “actions” object. This object must conatin the “action” object. The “command” property of this object must be set to “menu” and the “actions” object must contain the “action” array with the menu options.

In the example the menu has 3 child actions, each action has a command : "load-item" or "open-url".
For each menu item are specified : a label ( "content" ) and a target /target url.

  • “targetUrl”: url to call when the user selects the item.

  • “open-url”:( e.g. "https://www.google.com" ) : url to open ( browser/client side) when the user selects the item. Use the array of object “param” in the “param” property to specify the object with the properties “name”: “where” and “text”:”_blank” to indicate where to open the link

Code Block
languagejson
{
   "node":{
      "brain_id":"n_22369",
      "brain_version":"5.10.0-SNAPSHOT",
      "id":"n_22369_698945808",
      "key":"TEST_MENU",
      "serviceName":"enghouse-brain-bot",
      "serviceVersion":"1",
      "contents":{
         "content":[
            {
               "bargein":"true",
               "brain_id":"c_22369_3",
               "contentType":"TEXT_CONTENT_RICH",
               "id":"c_22369_3_1619889357",
               "usePreviousText":"false",
               "text":"Choose an option"
            }
         ]
      },
      "actions":{
         "action":{
            "brain_id":"a_34423",
            "command":"menu",
            "content":"",
            "id":"a_34423_1259541208",
            "order":"1",
            "runAt":"-1",
            "target":"",
            "actions":{
               "action":[
                  {
                     "brain_id":"a_34424",
                     "command":"load-item",
                     "content":"OPTION 1",
                     "id":"a_34424_1211377995",
                     "order":"1",
                     "runAt":"-1",
                     "target":"TEST_M_1",
                     "node_ref":{
                        "key":"TEST_M_1",
                        "targetUrl":"/enghouse-brain-bot/1/TEST_M_1?referrerActionId=34424"
                     }
                  },
                  {
                     "brain_id":"a_34425",
                     "command":"load-item",
                     "content":"OPTION 2",
                     "id":"a_34425_308197190",
                     "order":"2",
                     "runAt":"-1",
                     "target":"TEST_MENU_2",
                     "node_ref":{
                        "key":"TEST_MENU_2",
                        "targetUrl":"/enghouse-brain-bot/1/TEST_MENU_2?referrerActionId=34425"
                     }
                  },
                  {
                     "brain_id":"a_34426",
                     "command":"open-url",
                     "content":"PAT WEBSITE",
                     "id":"a_34426_1665019718",
                     "order":"3",
                     "runAt":"-1",
                     "target":"https://www.pat.eu",
                     "params":{
                        "param":[
                           {
                              "name":"method",
                              "text":"GET"
                           },
                           {
                              "name":"where",
                              "text":"_blank"
                           }
                        ]
                     }
                  }
               ]
            },
            "params":{
               "param":{
                  "name":"display",
                  "text":"v"
               }
            }
         }
      }
   }
}

Calling a specific node

This service must be called whenever it is specified by a previous response. For example, in the case of a menu, one of the options can specify a node url to be called in the "targetUrl" parameter if the option is chosen by the user.

...

Code Block
languagejson
{
   "node":{
      "brain_id":"n_22370",
      "brain_version":"5.10.0-SNAPSHOT",
      "id":"n_22370_1287493518",
      "key":"TEST_M_1",
      "serviceName":"enghouse-brain-bot",
      "serviceVersion":"1",
      "contents":{
         "content":[
            {
               "bargein":"true",
               "brain_id":"c_22370_3",
               "contentType":"TEXT_CONTENT_RICH",
               "id":"c_22370_3_266538648",
               "usePreviousText":"false",
               "text":"Option 1 selected"
            }
         ]
      }
   }
}

Redirect to operator

The human escalation is triggered by a redirect-to-operator action. It is possible to specify the target queue, the requested service level and skills.

...