JavaScript API reference
Settings
Settings are defined via the window.BrevoConversationsSetup object before the widget code, for example:
buttonStyle
String
Chat button style. Overrides the style set in widget settings. Possible values:
'tab''round'
Example:
buttonPosition
String
Chat button position. Overrides the position set in widget settings. Possible values:
'bl'– at the bottom of the screen, on the left,'bc'– at the bottom of the screen, in the middle,'br'– at the bottom of the screen, on the right,'lt'– on the left side of the screen, at the top,'lm'– on the left side of the screen, in the middle,'lb'– on the left side of the screen, at the bottom,'rt'– on the right side of the screen, at the top,'rm'– on the right side of the screen, in the middle,'rb'– on the right side of the screen, at the bottom.
On mobile devices, the “tab” button is always positioned at the bottom of the screen. The “round” button uses the same position on both desktop and mobile devices.
Example:
You can also change the position using setButtonPosition method.
buttonSize
Number
Round chat button size in px, default is 60. Does not affect the “tab” button. You can also change the size of the round chat button using the setButtonSize method.
Example:
customWidgetButton
String
Set any valid CSS selector as the customWidgetButton to assign the chat button behavior to an element of your choice. This also hides the default chat button. Set this before the widget code.
Example:
chatWidth
Number
Chat widget width in px, default is 380. The minimum value is 280. You can also change the width using the setChatWidth method.
Example:
chatHeight
Number
Chat widget height in px, default is 600. The minimum value is 300. You can also change the height using the setChatHeight method.
Example:
zIndex
Number
Chat widget’s z-index value, default is 9999. You can also change the z-index using the setZIndex method.
Example:
colors
Object
Defines the color scheme of the widget. Colors are set using strings in #fff or #ffffff format:
Custom message bubble colors work in browsers that support CSS variables. Browsers without CSS variable support display default colors.
You can also change the color scheme of the widget using the setColors method.
startHidden
Boolean
If set to true, the widget starts hidden. You can also show and hide the widget using the show and hide methods.
Example:
mobileOnly
Boolean
If set to true, the widget appears only on mobile devices.
Example:
disabledOnMobile
Boolean
If set to true, the widget doesn’t appear on mobile devices.
Example:
language
String
Widget language. Overrides the language set in widget settings. Possible values: 'en', 'de', 'fr', 'es', 'nl', 'pt', 'it', and 'ru'.
Example:
locale
Object
Lets you change any number of the default locale strings. Override individual strings, or all of them to translate the widget into an unsupported language.
See Translating the widget for details.
Example:
You can also modify the locale dynamically using the setLocale method.
mode
String
Conversations display mode:
'widget'— default widget,'frame'— Conversations is embedded into the block specified ininjectTo.
Example:
injectTo
String | Array | Object
Specifies the element Brevo Conversations is embedded into when launched in frame mode (see mode). Possible values: the element’s id, a direct link to the HTML Node, or an array-like HTML Node collection, including NodeLists and jQuery collections (the first element of the collection is used).
Example:
If you use an HTML node or a collection, ensure the required element is available when the BrevoConversationsSetup object is defined (place the definition before the closing </body> tag or run it after the DOMContentLoaded event). If you specify the element’s id instead, Conversations searches for the element automatically after the DOMContentLoaded event.
visitorId
String
Unique secret string (not available to other users). Binds the chat to a signed-in user.
visitorId must be unique and secret (not available to other users), since knowing it could grant access to the conversation. Use a randomly generated string. Do not use publicly known data such as a user’s ID, name, or email.
See Binding conversations to user accounts.
Example:
groupId
String
Agent group ID. Chats started on a page with this group ID set are assigned to this group. You can find the group’s ID on its page in Conversations’ “Groups” settings.
Example:
You can also change the agent group ID using the setGroupId method.
gaTrackingId
String
Sets a specific Google Analytics tracking ID to send Brevo Conversations events to.
You only need to set this if you have several GA trackers on the same page. Otherwise, Brevo Conversations sends events to Google Analytics automatically using the first GA tracker it finds on the page.
Example:
disableGaTracking
Boolean
Set this option to true to prevent Brevo Conversations from sending events to Google Analytics.
Example:
onNewMessage
Function
A callback function called every time a new message arrives.
The function receives the message details as an argument:
The message object includes the following keys:
id — message ID. Used for further operations on the message.
createdAt — timestamp in milliseconds.
type — "agent" for agents’ messages, "visitor" for visitors’ messages, and "bot" for automated scripts.
onAnalyticEvent
Function
A callback function called every time one of the analytic events listed below occurs.
Events not initiated by visitors have a non-interaction flag. Google Analytics excludes these events when calculating the bounce rate.
Chat initiated by visitor
A visitor initiated the chat by sending a message.
Chat initiated by agent (non-interaction event)
An agent initiated the chat by writing a message in the existing conversation after a period of inactivity.
Chat accepted by agent (non-interaction event)
An agent replied to a new chat from a visitor.
Chat rated
A visitor rated the conversation.
Targeted chat shown (non-interaction event)
A chat window was shown to a visitor (according to the “Targeted chats & triggers” settings).
Targeted chat accepted by visitor
A visitor replied to the chat initiated by a trigger.
Targeted chat rejected by visitor
A visitor closed the chat initiated by a trigger.
Pre-chat form shown (non-interaction event)
Contact form was shown to a visitor.
Pre-chat form submitted
Contact form was submitted by a visitor.
Bot scenario shown (non-interaction event)
Chatbot scenario was shown to a visitor.
Bot scenario started by visitor
A visitor started a chatbot scenario.
Bot reply option clicked
A visitor clicked on a reply option in a chatbot scenario.
The function receives event name as an argument:
Brevo Conversations sends these events to Google Analytics automatically. Use this setting to pass Brevo Conversations events to other analytic systems.
deferredLoading
Boolean
If set to true, the widget starts loading only after all other page resources have finished loading.
This may improve your score in tools like PageSpeed Insights, but the chat button takes longer to appear.
Example:
disableChatOpenHash
Boolean
When a visitor opens a chat window on a mobile device, #brevoConversationsExpanded is added to the page address. This lets the visitor close the chat window using the “back” button, but in rare cases it may conflict with some single-page applications.
Set this option to true to disable the behavior:
Methods
Methods dynamically change the behavior of the chat widget. Call them anywhere after the widget code, for example:
Method calls made before Brevo Conversations finishes loading are queued and executed once Brevo Conversations is ready.
sendAutoMessage
BrevoConversations('sendAutoMessage', text)
text – string containing the text of your message.
Sends an automatic message on behalf of a random agent. Works the same way as automatic targeted messages, but lets you define custom logic and control what is sent and when.
Example:
sendVisitorMessage
BrevoConversations('sendAutoMessage', text, {groupId})
text – String containing the text of the message.
groupId – (optional) Sets agent group ID. You can find the group’s ID on its page in Conversations “Groups” settings. Use null to reset the group ID. If not defined and the “Ask visitors to select a group” setting is enabled, the visitor may be asked to select the group before the message is sent.
Sends a message on behalf of a visitor.
Example:
startBotScenario
BrevoConversations('startBotScenario', scenarioId)
scenarioId – scenario ID, found on the scenario’s page.
Starts a chatbot scenario.
Example:
setButtonPosition
BrevoConversations('setButtonPosition', positionCode)
Sets the chat button position. Overrides the position set in widget settings.
positionCode – chat button position code. Possible values:
'bl'– at the bottom of the screen, on the left,'bc'– at the bottom of the screen, in the middle,'br'– at the bottom of the screen, on the right,'lt'– on the left side of the screen, at the top,'lm'– on the left side of the screen, in the middle,'lb'– on the left side of the screen, at the bottom,'rt'– on the right side of the screen, at the top,'rm'– on the right side of the screen, in the middle,'rb'– on the right side of the screen, at the bottom.
On mobile devices, the “tab” button is always positioned at the bottom of the screen. The “round” button uses the same position on both desktop and mobile devices.
You can also set the position using the buttonPosition setting.
resetButtonPosition
BrevoConversations('resetButtonPosition')
- Resets the chat button position to the one specified in Brevo Conversations Settings.
setButtonSize
BrevoConversations('setButtonSize', size)
size – positive integer, default is 60.
Sets the size of the round chat button in px. Does not affect the “tab” button. You can also set the round chat button size using the buttonSize setting.
setChatWidth
BrevoConversations('setChatWidth', width)
width – positive integer, default is 380. The minimum value is 280.
Sets the width of the chat widget in px. You can also set the widget width using the chatWidth setting.
setChatHeight
BrevoConversations('setChatHeight', height)
height – positive integer, default is 600. The minimum value is 300.
Sets the height of the chat widget in px. You can also set the widget height using the chatHeight setting.
setZIndex
BrevoConversations('setZIndex', zIndex)
zIndex – integer, default is 9999.
Sets the chat widget’s z-index value. You can also set z-index using the zIndex setting.
setColors
BrevoConversations('setColors', colors)
Sets the color scheme of the widget.
colors — object containing the colors of various widget elements. Colors are set as strings in #fff or #ffffff format:
Custom message bubble colors work in browsers that support CSS variables. Browsers that don’t support CSS variables will show default colors.
You can also set the color scheme of the widget using colors setting.
resetColors
BrevoConversations('resetColors')
Resets the colors set with the colors setting or setColors method.
openChat
BrevoConversations('openChat'[, focus])
Expands the chat window. Works on both desktop and mobile devices.
The expanded chat window occupies the entire screen on mobile devices. If that isn’t what you want, use the expandWidget method instead.
focus – optional flag. If set to true, the chat input field is focused after the widget expands. Ignored on mobile devices.
expandWidget
BrevoConversations('expandWidget'[, focus])
Expands the chat window. Has no effect on mobile devices.
To expand the chat window on both desktop and mobile devices, use the openChat method instead.
focus – optional flag. If set to true, the chat input field is focused after the widget expands.
minimizeWidget
BrevoConversations('minimizeWidget')
Minimizes the chat window.
hide
BrevoConversations('hide')
Hides the widget. You can also hide the widget using the startHidden setting.
show
BrevoConversations('show')
Shows the widget hidden by the startHidden setting or hide method.
pageView
BrevoConversations('pageView')
Sends a page view to Conversations. If your website or web app loads pages dynamically and updates the document’s URL without a full page load, use this method to track these views in the Conversations right pane.
updateIntegrationData
BrevoConversations('updateIntegrationData', data)
data — object containing any number of properties. Each property’s value must be a String, Number, Boolean, or null.
Updates the visitor’s info in the Conversations right pane. Use null to remove properties:
If custom properties set in updateIntegrationData match existing contact attributes, they sync with your Contacts database. Otherwise, they’re available in Conversations only.
Any tech-savvy user can modify the identification data sent to Conversations via the JS API. Treat data sent through the JS API as auxiliary information, not as a definitive user identifier.
setLocale
BrevoConversations('setLocale', localeModifier)
localeModifier – object containing a modified locale structure.
Lets you change any number of the default locale strings. Override individual strings, or all of them to translate the widget into an unsupported language.
See Translating the widget for details.
Example:
You can also modify the locale using the locale setting.
setGroupId
BrevoConversations('setGroupId', groupId)
Sets the agent group ID. Chats started with this group ID set are assigned to this group.
You can find the group’s ID on its page in Conversations’ “Groups” settings.
Use null to reset the group ID:
You can also set the agent group ID using the groupId setting.
restart
BrevoConversations('restart')
Restarts Brevo Conversations.
Use it to update Brevo Conversations settings that can’t be updated through API methods, for example:
kill
BrevoConversations('kill')
Removes Brevo Conversations completely from the page. Call BrevoConversations('restart') to reinitialize Brevo Conversations.