Customize Guide Chat Using APIs

You can customize the appearance and behavior of chat that is implemented with Guide by using these chat-related APIs.

Chat Behavior API Calls

The calls in this section allow you to change how the Guide chat window behaves.

Set Authorization Code

Sets an authorization code for oAuth flow. OAuth is an authentication protocol. It allows you to let one application interact with another on your behalf without giving away your passwords. It must be called before chat initialization.

cxone('chat','setAuthorizationCode', 'authorization_code');

Customize the Initial Automated Contact Message

When a chat starts in Guide, a new caseClosed The full conversation with an agent through a channel. For example, an interaction can be a voice call, email, chat, or social media conversation. is created and added to the queue when the first message of the chat session is sent. A hidden, automated message is sent on the visitor's behalf when the chat session starts. This decreases the amount of time visitors wait for an agent. Although the initial message is hidden from the contact, the agent can see it.

The default message is the text on the button that the customer clicks to start the conversation. You can customize the text of the initial, automated message in three ways:

  • Override the default button text.

    cxone('chat','sendFirstMessageAutomatically', 'Hello');
  • Change the initial message dynamically.

    cxone('chat','setFirstAutomatedMessageContent', 'Hello, I have a question');
  • Change the message text on the on the translations page.

Make the Initial Automated Message Visible to Contacts

If you want the visitor to be able to see the initial automated message, add this call to your script:

cxone('chat','hideFirstSentMessage', false);

Delay Case Creation

Guide creates a new case and adds it to the queue when the first message of the chat session is sent. A hidden, automated message is sent on the visitor's behalf when the chat session starts. This decreases the amount of time visitors wait for an agent. Chat sessions start when a visitor clicks the chat icon to begin a conversation. Although the initial message is hidden from the visitor, the agent can see it.

You can configure Guide to wait for the visitor's actual first message before creating a case using this call:

cxone('chat','sendFirstMessageAutomatically', false);

Enable Game Mode

Allows visitors to play the game Snake while waiting for an agent.

cxone('chat','allowGameMode');

Automated Satisfaction Survey

A satisfaction survey can be automatically detected and displayed in a pop-up. This enables or disables them to be detected and displayed or not.

cxone('chat','automatedSatisfactionSurveyModal', 'false');

Chat Information API Calls

These calls allow you to customize the information that's available to visitors during a chat session.

Get Customer Identity ID

Returns the unique identifier of the visitor in the chat.

cxone('chat','getCustomerIdentityId');

Set Customer ID

Sets a unique identifier for the visitor in the chat.

cxone('chat','setCustomerId', 'customer_id');

Hide Queue Counter

The queue counter lets a visitor know how soon an agent will be able to help them based on where they are in the agent's queue. You can hide the queue counter after the visitor has been successfully routed to an agent. This allows agents to remove customer cards from their inbox without visitors noticing.

cxone('chat','hideQueueCounterAfterAssignment');

Set Activity Status

Changes the message in the activity bar. For example, you could use it to communicate your response time for a chat messagingClosed Asynchronous chat in which contacts send a chat message anytime and wait for a reply session. This could be helpful because chat messaging is an asynchronous form of chat, so visitors could have to wait to hear from an agent.

cxone('chat','setStatusMessage', 'We typically reply within 3 hours.');

Set Agent's Image

Dynamically changes the agent image displayed in the chat window. By default, Guide uses the image in the agent's profile. When you include this call in your script, it uses the image specified by the URL in the code snippet. Replace the example URL with the URL of the image you want the chat to use.

cxone('chat','setAgentImage', 'http://classics.com/images/agents/elizabeth_bennet.png');

Set Customer Name

Customer Name is a field on the precontact survey form, which visitors are required to fill in prior to chatting with an agent on a chat messagingClosed Asynchronous chat in which contacts send a chat message anytime and wait for a reply channel. This API call dynamically fills the field.

cxone('chat','setCustomerName', 'Elizabeth');

Set Date Format

Sets the date format to absolute date format (01/01/2022) or relative date format (today, Monday).

cxone('chat','setDateFormat', 'date_format');

Set Locale

Sets the locale for translations in the chat window.

cxone('chat','setLocale', 'locale');

Show Case Information

Only for chat messagingClosed Asynchronous chat in which contacts send a chat message anytime and wait for a reply channels. Shows case information to the visitor.

cxone('chat','showCaseInfo');

Show/Hide the Send Transcript Button

If you make the Send Transcript button visible, you must configure the chat channel to allow visitors to send the chat transcript to themselves. Configure this option for chat messaging or live chat.

cxone('chat','showSendTranscript');
cxone('chat','hideSendTranscript');

Show/Hide System Messages

Shows or hides system messages like agent assignment history.

cxone('chat','showSystemMessages');
cxone('chat','hideSystemMessages');

Terms of Use

Lets you make a terms of use document available to visitors from within the chat window. This function adds a button to the window. You can customize the button's label and style, and what happens when visitors click it. The on-click action can show the terms of use as an internal window or an external link.

An internal window:

cxone('chat','showTermsOfUse', 'Show terms of Use', 'modal' , 'Our terms of use are ...');

An external link:

cxone('chat','showTermsOfUse', 'Show terms of Use', 'externalLink' , 'http://yourdomain.com/terms-of-use');

To disable the feature:

cxone('chat','hideTermsOfUse');

Custom Fields, Labels, and Phrases

Create and Populate Custom Fields

The custom fields you can use with this call are the same as the ones you can use in Customer Card. If you use these calls before opening a chat window, the fields in the precontact form are populated with the data you include in the API call.

To define the value of a case custom field:

cxone('chat','setCaseCustomField', 'ident_of_custom_field', 'value_of_custom_field');

To define the value of a Customer Card custom field:

cxone('chat','setCustomerCustomField', 'ident_of_custom_field', 'value_of_custom_field');

Customize Labels and Phrases

You can customize many of the labels and phrases that Guide chat uses, as well as define the customizations. If you need to dynamically change the phrases or screen labels, use these API calls.

To change a single message or label:

cxone('chat','setTranslation', 'key', 'your translation');

To change multiple messages or labels:

cxone('chat','setTranslations', {key1: 'your custom label', key2: 'your custom message'});

Chat Window Appearance API Calls

You can modify the appearance of the chat window used by Guide.

Hide Assigned Agent

cxone('chat','hideAssignedAgent');

Hide Header

cxone('chat','hideHeader');

Show Customer Avatar

cxone('chat','showCustomerAvatar');

Show Send Button

cxone('chat','showSendButton');

Set Character Limit for Reply Box

cxone('chat','setReplyBoxLimit', '280');

Custom CSS with Data Selectors

You can customize the appearance of chat windows with custom CSS using data selectors in your API calls. Data selectors allow you to specify the part of the chat window you want to apply the custom CSS to. Define the data selector using the data-selector attribute. Set it equal to the name of the chat window component you want to modify.

To add custom CSS with data selectors, use this API call as a reference:

cxone('chat','setCustomCss', '[data-selector="CUSTOMER_MESSAGE_BUBBLE"] {color: white !important; background: black !important};');

Apply custom CSS components using the data-selector attribute only. Don't apply it to class selectors or other parts of the JavaScript code, such as in this example: 

.Widget__Widget___1qQCf { background: red; }

Integrate with Third-Party Applications

The calls in this section allow you to receive push notifications when certain chat events occur.

Recognize Active Threads in the Chat Window

cxone('chat','getOngoingThreads');

Recognize Ongoing Contact in the Chat Window

cxone('chat','getOngoingContact');

Receive Push Notification for Specific Chat Events

To receive a notification for one chat event:

cxone('chat','onPushUpdate', 'event', callback);

To receive a notification for more than one chat event:

cxone('chat','onPushUpdate', ['event', 'event', 'event'], callback);

To receive a notification for all chat events:

cxone('chat','onAnyPushUpdate', callback);