Introduction
This documentation provides details on how to use the Chatbot Web SDK. The Chatbot Web SDK allows you to integrate a chatbot into your website.
To integrate the Chatbot Web SDK into your website, you need to inject the following script:
Replace YOUR_WIDGET_ID
with your actual widget ID. You can find your widget ID in the
Chatbot Dashboard.
$yourgptChatbot
After the Chatbot Web SDK script is loaded, the $yourgptChatbot
variable becomes available. This variable provides methods to interact with the chatbot.
Execution Commands
These are the commands that can be executed using the $yourgptChatbot.execute()
function.
Command | Description |
---|---|
widget:open | Opens the chatbot. |
widget:close | Closes the chatbot. |
message:send | Sends a message to the chatbot. |
message:send
payload
message:send
payload Property | Description | Type | Default |
---|---|---|---|
text | The message text. | string | |
send | Indicates whether the message should be sent to the chatbot or not. | boolean | false |
Opening the chatbot
Sending a message to the chatbot
Here the text
is the message that you want to send to the chatbot. The send
parameter is a boolean value that indicates whether the message should be sent to the chatbot or not. If the send parameter is set to false, the message will be displayed in the chatbot but will not be sent to the chatbot.
Closing the chatbot
Event Listeners
The Chatbot Web SDK provides event listeners that you can use to listen to events that occur in the chatbot. To add an event listener, you need to call the $yourgptChatbot.on(event,callback)
function.
Event Name | Description | Arguments |
---|---|---|
init | Triggered when the chatbot is initialized. | |
widget:popup | Triggered when the chatbot popup opens or closes. It provides a boolean in the callback indicating the state (true for open, false for closed). | state:boolean |
Example: Listen to the init event
Removing an event listener
To remove an event listener, you need to call the $yourgptChatbot.off(event,callback)
function.
Set Command
The Chatbot Web SDK provides a set command that you can use to set visitor, session and widget data. To set data, you need to call the $yourgptChatbot.set(type,data)
function.
Type | Description | Payload |
---|---|---|
visitor:data | Sets the visitor data. | object |
session:data | Sets the session data. | object |
Example: Set visitor data
Example: Set session data
Set Contact Data
Type | Description | Payload |
---|---|---|
contact:data | Sets the contact data. | objectCheck supported fields 👇 |
Supported Contact payload fields for update
Field | Description | Type | Required |
---|---|---|---|
A valid email address. | string | Either email or phone is required | |
phone | A valid phone number e.g. +1234567890. | string | Either phone or email is required |
name | Name of the contact. | string | No |
ext_user_id | A unique identifier for the contact. | string | No |
Example: Set contact data
Configuring Data for Iframe Embeds
If you are using the Chatbot Web SDK with an iframe embed, you can set the visitor, session, and contact data by passing the data in the query parameters of the iframe URL.
Visitor Data
To set visitor data, append the VISITOR_DATA.keyName=value
query parameter to your iframe URL.
Session Data
To set session data, append the SESSION_DATA.keyName=value
query parameter to your iframe URL.
Contact Data
To set contact data, append the CONTACT.keyName=value
query parameter to your iframe URL.