Skip to main content

Instance methods and events

The Webchat widget, upon initialization, exposes a collection of methods and events that you can use to interact with the widget. You can use these to control the widget's behavior, theme the widget, send messages from your own functions, and much more.

<script src="https://cdn.jsdelivr.net/npm/@moveo-ai/web-client@latest/dist/web-client.min.js"></script>
<script>
MoveoAI.init({
integrationId: "YOUR_INTEGRATION_ID",
})
.then((instance) => {
console.log("connected");
// The instance returned here exposes the methods and events listed below.
// You can also assign them to a global variable so they can be accessed from anywhere in your website.
})
.catch((error) => console.error(error));
</script>

Instances

MethodDescription
openWindowOpens Webchat if it is currently closed.
closeWindowCloses Webchat if it is currently opened.
sendMessageSends the specified message to the AI Agent.
updateContextUpdates the context of the user.
destroyEnds the conversation and hides the webchat.
setCSSVariablesOverrides the exposed CSS variables so the web-widget can be custom styled.
setLocaleUpdates the locale of the user.

instance.openWindow

Opens the chat window if it is currently closed.

Example

instance.openWindow();

instance.closeWindow

Closes the chat window if it is currently open.

Example

instance.closeWindow();

instance.sendMessage

This method can be used to programmatically send a text message to the AI Agent.

Example

instance.sendMessage({ text: "This is a sample text message" });

Usage

  • If a conversation already exists, the message will be sent directly to the user.
  • If there is no existing conversation, the welcome_trigger_message will be overridden and the message will be sent.
  • If Visitor Information is required, the message will be sent only after the form has been completed.
note

If the chat window is closed, use the openWindow method to open it.

Example

instance.sendMessage({ text: "This is a sample text message" });
instance.openWindow();

instance.updateContext

This method can be used to update the user information or to add new tags to the current session.

Example

instance.updateContext({
user: { display_name: "Moveo user" },
customer_id: 12345,
});

instance.destroy

This method will expire the conversation and hide the webchat so no new messages can be sent.

Example

// point where the session should end at all times
if (shouldDestroyWebchat) {
instance.destroy();
}

Usage

This method can be used to prevent users from starting a new conversation once their session on the website has expired.

note

After using the instance.destroy(), you can recreate a webchat instance at any time by calling the MoveoAI.init method again.

instance.setLocale

This method can be used to update the default language text of the webchat. You can find a list of the supported locales (languages) in the following table.

Available locales

CodeLanguage
de🇩🇪 German
el🇬🇷 Greek
en🇺🇸 English
es🇪🇸 Spanish
fr🇫🇷 French
it🇮🇹 Italian
bg🇧🇬 Bulgarian
pt-br🇧🇷 Portuguese (Brazil)
ro🇷🇴 Romanian
pl🇵🇱 Polish
cs🇨🇿 Czech
id🇮🇩 Indonesian
nl🇳🇱 Dutch
sr🇷🇸 Serbian
sv🇸🇪 Swedish
ru🇷🇺 Russian
sq🇦🇱 Albanian
zh🇨🇳 Chinese
ar🇸🇦 Arabic
ja🇯🇵 Japanese
tr🇹🇷 Turkish

Example

instance.setLocale("en");

instance.setCSSVariables

This method can be used to change the appearance of the web-widget. You can find a list of all the available variables below.

CSS variables:

VariablesDescription
--moveo-background-colorThe primary color of the web widget
--moveo-accent-colorThe secondary color of the web widget
--moveo-header-heightThe height of the web widget header

Example

instance.setCSSVariables({
"--moveo-background-color": "red",
"--moveo-accent-color": "blue",
});

Events

EventDescription
onSessionCreatedIs executed every time a new conversation is created
onSessionReconnectedIs executed every time a conversation reconnects
onConversationClosedIs executed every time a conversation is closed

instance.onSessionCreated

You can use this event to execute your own functions when a new session is created.

instance.onSessionCreated(() => {
instance.updateContext({
user: { display_name: "Moveo user" },
});
});

instance.onSessionReconnected

You should use this event to execute your own functions when a session reconnects. This will happen when you have conversation history

enabled, so each time the page refreshes, we reconnect to the existing session instead of creating a new one.

instance.onSessionReconnected(() => {
instance.updateContext({
user: { display_name: "Moveo user" },
});
});

instance.onConversationClosed

You can use this event to handle the cases when the conversation is closed.

instance.onConversationClosed(() => {
console.log("Resolved");
window.close();
});