Syncing Sales Chat Transcripts in Real-Time with Zendesk Sell CRM and Stream Chat

6 min read
Keith C.
Keith C.
Published August 7, 2020 Updated January 19, 2022

Can you imagine viewing your sales chat transcripts in real time from your sales CRM? Would your chat applications improve with more timely handling of customer chat inquiries? This post demonstrates how to leverage the powerful Stream Chat API to take action with a chat transcript as the chat takes place, response by response. The techniques provided here will help you better understand key components of the Stream Chat API, so that you can leverage them for similar applications, either with Zendesk Sell or other CRMs.

We show this through the use case of updating a Zendesk Sell Lead in real-time with the transcript messages of a Customer.

The simplified process of this post simulates a customer starting a sales chat. The customer chat components pass the chat message to a backend API, which is the focus of this post. The backend calls the Zendesk Sell API to update the desired Lead Description. You will see that the Zendesk lead description is updated after the customer sends a message. The flow is illustrated below.

Note: we only focus on the Customer experience in this post. Similar steps can be taken to sync the admin messages.

Technical Overview

The applications described in this post are composed of:

The frontend is bootstrapped using create-react-app, and the backend server is an Express app running on nodejs. Both the frontend and backend leverage Stream's JavaScript library. The backend employs axios to interact with the Zendesk Sell API. All the code required for this tutorial is available in the GitHub repository.

Prerequisites

To follow along with the post, you will need a free Stream account, and a Zendesk Sell account (a Zendesk Trial can be obtained here).

The code in this post is intended to run locally and assumes a basic knowledge of React and React Hooks, Express, Node.js, and axios. The basic steps to configure Zendesk and use the API are explained in the post (see the Zendesk Sell API documentation to learn more). Please note, however, that you will need to create at least one Lead manually in Zendesk and use the Lead ID when logging in, as described below. Automatic Lead creation is possible, but is extracurricular to this post. If you want to see how to generate these leads programmatically when entering starting a Stream chat, see this post.

Configuration

This application requires three environment variables to be configured:

  • STREAM_API_KEY
  • STREAM_API_SECRET
  • ZENDESK_CRM_TOKEN

You will find a file in the backend folder, .env.example, that you can rename to create a .env file.

When the .env file has been created and configured, you can start the backend by npm start command from the backend folder.

Before we do anything we start anything we need to create and configure our accounts.

Let's get started!

Registering and Configuring Zendesk

To integrate Stream with the Zendesk Sell API, you must configure the OAuth security settings in Zendesk Sell with the following steps:

  1. Click on the Settings gear to the right of the top menu
  1. Click on OAuth under the Integrations menu
  1. Click on + Add Access Token
  1. Complete description and leave settings unchanged (more restrictive settings may be required for your application) and click Save
  1. Copy the access token, which you will need to configure your backend communication with Zendesk.

Update you're .env file with the token you just generated.

Registering and Configuring Stream

Building your own app? Get early access to our Livestream or Video Calling API and launch in days!

Now we can configure Stream. To get the Stream credentials, navigate to your Stream.io Dashboard

Then click on "Create App"

Give your app a name and select "Development" and click "Submit"

Stream will generate a key and secret for your app. Copy these and update the corresponding environment variables in the .env file.

Step 1 - Starting a Chat

First, let's build a React frontend that allows you to start a chat as a Customer. Here's what our simplified logins screen looks like.

Let's start by modifying the App.js file that was generated by create-react-app:

void/a761302f2a7167c70becefbbc1652ffe
404: Not Found

We first present the user with the form (displayed above). This form contains a username, a leadId (to identify the Zendesk Sell lead record), and a button to start the chat. We use useState to keep track of the values of each of these fields.

To keep this post focused, we won't generate leads dynamically. This means we'll need to input the lead id from Zendesk manually. To grab our lead id, go to your Zendesk dashboard and navigate to the "Leads" section. If you don't have a lead, click on "Add" and then "Add Lead". Fill in the necessary information then click "Save". Once you've done that you should see a lead id in the URL. It will be a 6-8 digit number such as 3180101.

Once you've filled out your username and leadId, after you can click "Start Sales Chat". Upon clicking this, we fire our startChat function:

void/61a55a25ac84212d100a7e92d6e97a04
404: Not Found

Here we post our username and leadId to our backend. We'll look at what our backend does in a second, but first, let's see how our frontend handles the response. Our backend will return a few pieces of data required to configure our frontend client. Using the apiKey we set up our frontend StreamChat instance. We then configure the chat instance with the userId, userName, and the Stream frontend token. Once our client is configured, we can create a reference to our channel via the channelId. We then set the React component's chatClient and channel state.

Before we move on to rendering the chat channel, let's look at the backend /stream-chat-credentials handler:

void/d6c93e15b7527e4e9ed3c5e4babbe8ab
404: Not Found

Here we take the username from the request. We use our streamClient to create or update the user. Then we create a chat channel that is private to that user (and any admin user). Once the chat channel is set up, we generate the user's frontend token and respond to the user with the necessary data.

Step 2: Displaying a Stream Chat Channel

Once you've started a chat you will see a screen that looks like this:

As you can see in Step 1, we have the data we need to mount the SalesChat component. This component takes the user information (username and leadId) and our Stream data (chatClient and channel). The process flow of this component is to render the chat experience, hook into the message lifecycle, send each message to our backend, then update the Lead in Zendesk Sell. Here's the entire component:

void/e4cb88fbb40a72ab5376f96161a4034f
404: Not Found

Using the chatClient and channel we render the chat experience with Stream's Chat Messaging UI Kit. The component hooks into the message lifecycle by configuring the Channel component's doSendMessageRequest prop. This prop allows us to intercept the message before it goes to Stream's API. Inside of handleMessage we send the message, along with the author and leadId to our backend's /messages endpoint. Once the message has been handled by our backend, we send the message to the channel by calling sendMessage.

Step 3: Syncing the Chat Transcript on Every Message

Now that we have our chat experience mounted and are sending every message to our backend, we can sync these messages to our Zendesk Lead. Here's our /messages endpoint:

void/6f1d03728d639e7e132e7046d4f916ff
404: Not Found

This endpoint appends the new message and author to the description field. Every time we update the description field, it will overwrite the previous data. Therefore, we need to look up the previous transcript via getPreviousTranscript, and append the new message to it:

void/76e76c28fb0fda8c6cf0bc42e3aac827
404: Not Found

This is simply a GET against the lead to get the previous description field out. Once we have the previous description we issue a PUT to update the lead with the new description field containing our appended message.

That does it! You now understand how to integrate Stream Chat with Zendesk Sell to update Lead Descriptions (or any other Zendesk field as needed) during your sales chat experience.

decorative lines
Integrating Video With Your App?
We've built an audio and video solution just for you. Launch in days with our new APIs & SDKs!
Check out the BETA!