Answer Bot API

The Web Widget (Classic) includes Answer Bot, a virtual customer assistant that uses machine learning to answer customer questions before they are directed to a chat agent, initiate a callback, or leave a message. It provides article suggestions from your help center. The Answer Bot component is represented by the answerBot key of the webWidget object, and is itself an object.

For more information about Answer Bot in the Web Widget (Classic), see Enabling and using Answer Bot in the Web Widget (Classic).

Settings

The answerBot object has the following settings:

Example

<script type="text/javascript">  window.zESettings = {    webWidget: {      answerBot: {        suppress: false,        title: {          '*': 'Chat with us!'        },        contactOnlyAfterQuery: true,        search: {          labels: ['I would like help.']        },        avatar: {          url: 'https://youravatarurl.com/image.png',          name: {            '*': 'Company logo'          }        }      }    }  };</script>