Get the latest live chat benchmark data broken down by team size & industry

Read more
How can Comm100 Chatbot send data to your web application using Webhook?

Comm100’s Chatbot allows your customers to interact with a bot to receive information about products or services quickly and efficiently.

However, you may need to extend the capabilities of our Chatbot by connecting it to your own database for a more personalized and dedicated service.

Now, with the latest update, our Chatbot can send data to your own web application using a “Webhook”. A Webhook is a custom web callback query used to provide real-time information.

To set up these new personalized questions, you can supply Chatbot with a URL of the web application to receive the Webhook data and return the relevant information to our Chatbot service.

Step by Step Instructions

1. Log in your Comm100 account and go to Bot module.

2. Navigate to Intents tab, click on the Bot you want to edit from the list.

3. Click New Intent or edit an existing Intent.

4. Select the Live Chat channel, and add Webhooks response.

5. Finally enter URL for your web application to received chat data.

Data Sent to Your Web Application

Through the designated URL, your web application will receive the variables and its values from the chat sessions. The data that will be passed to your web application will include the “Fields” in the Pre-chat Window, Custom Variables, Variable of Visitors, Last Message from Visitors, and Matched Intents.

Your web application will then process the received data, generate and send us the result.

Below is an example of the data in JSON format that will be sent to your server:
  {
    "Visitor":{
        "browser":"Google Chrome 29.0.1547.76",
        "chats":2,
        "city":"Vancouver",
        "company":"Comm100",
        "country":"Canada",
        "current_browsing":"https://www.comm100.com/",
        "custom_fields":[
            {
            "field_id":5000001,
            "name":"order_id",
            "value":"1780064"
            },
            {
            "field_id":5000002,
            "name":"bill_amount",
            "value":"500.00"
            }
        ],
        "custom_variables":[
            {
            "name":"user_login",
            "value":"facebook"
            },
            {
            "name":"have_sales",
            "value":"yes"
            }
        ],
        "department":"livechat",
        "email":"allon@comm100.com",
        "first_visit_time":"/Date(13584868423)/",
        "id":1024768,
        "ip":"192.168.8.1",
        "keywords":"comm100",
        "landing_page":"https://www.comm100.com/livechat/",
        "language":"en_us",
        "name":"allon",
        "operating_system":"Windows 7",
        "page_views":3,
        "phone":"12983782710",
        "product_service":"livechat",
        "referrer_url":"http://www.google.com/q=comm100",
        "screen_resolution":"1440*900",
        "search_engine":"Google",
        "state":"British Columbia",
        "status":1,
        "time_zone":"UTC-08:00",
        "visit_time":"/Date(13584868542)/",
        "visits":5,
        "ssoId": ""
    },
    "FormValues": [
        {
            "label": "account",
            "value": "sam"
        },
        {
            "label": "password",
            "value": "1234"
        }
    ]
  }

Properties Explained

Id

ID of the visitor

name

Name of the visitor

email

Email of the visitor

status

Status of the visitor (please check the Visitor Status Description at the bottom of this article)

phone

Phone of the visitor

company

Company of the visitor

first_visit_time

Time when the visitor first visited a web page pasted with Comm100 Live Chat code

visit_time

Starting time when this visitor visits your website this time

city

City of the visitor

state

State of the visitor

country

Country of the visitor

ip

IP of the visitor

language

Language the visitor is using

screen_resolution

Screen resolution of the visitor’s device

time_zone

Time zone of the visitor

flash_version

Flash version of the browser the visitor is using

operating_system

Operating system of the visitor’s device

browser

Browser the visitor is using

custom_fields

Values of custom fields entered by visitors in the pre-chat window. Agents can also update the value(s) during chat in Visitor Monitor. Custom fields contain the following properties:

id: id of the custom field
name : name of the custom field
value : value of the custom field

product_service

Product/Service the visitor selected in the pre-chat window. Agents can also update the value while chatting with visitors.

department

Department the visitor selected in the pre-chat window. Agents can also update the value while chatting with visitors.

custom_variable

Information of custom variables captured from the web page visitors viewed. Custom variables contain the following properties:

name : name of the custom variable
value : value of the custom variable

current_browsing

Page the visitor is currently looking at

visits

Total times of visits a visitor has made on your website from the first time to present

chats

Total times of chats a visitor has made on your website from the first time to present

referrer_url

URL of the page from which a visitor comes to your website

search_engine

Search engine the visitor used to search for your website

keywords

Keywords the visitor used to search for your website

landing_page

Title and URL of the first page of your website the visitor visited

page_views

Total number of web pages the visitor viewed on your website

ssoId

SSO ID of the visitor, if visitor login by Single Sign-On

FormValues

label : name of the Form field
value : value of the Form field

Visitor Status Description

0

Waiting for chat

1

Voice chatting

2

Chatting

3

Pre-Chat

4

Manually Invited

5

Auto invited

6

Offline message

7

Refused by agent

8

Refused by visitor

9

Chat ended

10

In site

11

Out of site

Data Received from Your Server and Chatbot Answers

We accept the data returned in JSON format. Here are examples of how the data is formatted and what Chatbot answers back with:

Customer Requests Text

{
 "messages": [
   {"text": "Welcome to Comm100!"},
   {"text": "How can I help you?"}
 ]
}

Chatbot will send text message as an answer to your customers in the Chat Window.

Customer Requests Image

{
  "messages": [
    {
      "attachment": {
        "type": "image",
        "payload": {
          "url": "https://petersapparel.parseapp.com/img/item101-Comm100_logo.png"
        }
      }
    }
  ]
}

Chatbot will show the preview of the image directly in the Chat Window.

Customer Requests File

{
  "messages": [
    {
      "attachment": {
        "type": "file",
        "payload": {
          "url": "https://testing.comm100.com/Comm100-Live-Chat-Feature- List.pdf"
        }
      }
    }
  ]
}

When your server returns a file attachment, Chatbot will provide a link for your visitors to download.