Messaging Overview

Introduction

This document is dedicated to a set of Messaging APIs, which consists of the Agent Chat API, Customer Chat API, and the Configuration API. It also explains some key concepts, such as the definition of a chat and a thread, the flow between services, or chat routing. Understanding them is a prerequisite to the efficient usage of our APIs.

This document is a great starting point if you plan on using our APIs. You'll learn what use cases can be covered with each API. For hands-on examples, we encourage you to check the documentation specific to each API.

Key concepts

Chats and threads

By looking at the chat structure, you notice that each chat is is divided into threads. Every thread contains events, for example sent messages. You can think of a chat as a whole conversation, while threads are separate conversation topics. Chats and Threads

Consider the example of an online store. A customer starts a chat to ask about the shoes he bought. If he hasn't got any previous chat history, a new chat is started. Within this chat, a new thread is created (conversation topic). The messages he exchanges with the customer service assistant are received by the thread as events. After solving the problem, the customer says goodbye and closes the chat, which automatically closes the thread. Let's say the customer is rude and leaves without saying goodbye. In this case, the thread closes after 30 minutes of inactivity (time periods are configurable). The chat doesn't end, though.

The next day, customer returns to ask about his other purchase. A new thread starts in the context of the chat, which has been continuously open. Each time customer returns and starts a new conversation topic, he needs to click start a chat. If we stuck to our naming convention, that would have to be start a thread, because this is what he actually does behind the scenes.

A message or rich message are not the only event types, though. There are also special events for specific actions, like: file, filled form, system and custom messages.

Rules and conditions

Here are some general rules, which summarize the previous section and add new info.

  1. When a new chat is started, a new active thread is created within this chat. New threads within a single chat are created on the server side.

  2. There's always only one active thread. Only the last thread can be the active one. Events are always added to the active thread.

  3. There can be time gaps between threads in a chat, but once a chat is started, it's continuously open.

  4. Messages are sent and delivered even when the recipient (both Customer and Agent) is offline.

  5. Multiple Agents can participate in a single chat.

  6. Every user can have multiple concurrent chats. Read how it applies to Agents and Customers.

  7. The algorithm that decides how chats are distributed between Agents is called routing. It's documented in the Routing section.

Chat routing

Routing is the process of assigning chats to agents. The primary goal of the routing mechanism is to distribute chats to all available agents who use the same license.

Chats are being assigned to agents either automatically or manually. Our default routing mechanisms are described in Understanding chat routing.

Router system messages

While the chat changes its state, the router sends system messages. Read more about system messages in Agent Chat API and Customer Chat API.

Flow between services

Watch a short video that illustrates the basic flow between services in LiveChat.

For more technical details, analyze the diagrams and read the descriptions below.

Basic flow

Basic flow between services in LiveChat

The LiveChat communication protocol uses websockets (RTM API). They act like tubes that connect two sides and enable transport between them. In the basic model of the LiveChat services, there are two websocket connections:

  • Agent App and the LiveChat's backend
  • the LiveChat's backend and Chat Widget

The first connection allows for sending an event, for example, a message, by an agent to the LiveChat's backend. The send_event action triggers the LiveChat's backend to generate a push. The incoming_event push is sent to the Chat Widget via the other websocket. The push contains the message written by the agent.

Apart from pushes, actions can also trigger the LiveChat's backend to generate webhooks. To receive a webhook, you need to register it first. That's how you let the LiveChat's backend know you want to be notified about certain actions. The LiveChat's backend will send webhooks to the target webhook URL you specify during webhook registration.

Flow with integrations

Developers can build integrations that extend LiveChat's messaging capabilities, for example, via a new communication channel. Consider the example of the integration app that connects LiveChat with Facebook Messenger. Keep in mind the flow presented in the diagram below is typical for a new communication channel and it would be different for an app that simply extends the LiveChat UI.

livechat-integrations-flow

An Agent sends a message via a websocket connection. It triggers the LiveChat's backend to send a webhook to the integration app, informing about the incoming event. In response to the webhook, the integration sends an HTTP request to the external backend (in this case it's Facebook). They use transport of their choice to pass the message to the Customer chatting via Facebook Messenger.

APIs Overview

There are two primary Chat APIs:

  • Agent Chat API, which serves to join a chat as Agent.
  • Customer Chat API, which serves to join a chat as Customer.

The separation of Chat APIs helps you decide which set of methods you should use. It depends on the role of the chat user. Want to join a chat as Agent? Refer to the Agent Chat API. Want to send messages as Customer? Use the Customer Chat API.

To use both APIs, you need to be authorized. This topic is thoroughly explained in the Authorizing API calls document.

RTM API vs. Web API

Agent Chat API and Customer Chat API can be used either as Real-Time Messaging APIs (RTM APIs) or Web APIs.

To learn about differences between these two API types, see the comparison below:

CharacteristicsRTM APIWeb API
connection typestateful e.g. websocketstateless, via XHR requests
finds out about state changes viapusheswebhooks
used byAgent App, Chat Widgetexternal apps, integrations
documentationAgent Chat RTM API & Customer Chat RTM APIAgent Chat Web API & Customer Chat Web API

If you're not sure, which implementation to choose, we suggest reading about particular APIs. You'll find the When to use RTM/Web API section in each document - refer to the table above for links.

API Versioning

The LiveChat Messaging API adopts the following versioning convention:

  • stable

    The latest stable version we encourage developers to use. We don't introduce any new functionalities or breaking changes - only bug fixes are expected.

  • developer preview (dev preview)

    An unstable version that provides a preview of the upcoming features. It's not open to public use. However, if you want to test some features, contact us at developers@livechat.com or ask on the chat, and we'll give you access.

  • legacy

    The old version we still support but highly encourage you to switch to the latest stable version.

Currently:

Agent Chat APICustomer Chat API
stable3.33.3
dev preview3.43.4
legacy3.1, 3.23.1, 3.2

Agent Chat API

Use cases

The Agent Chat API allows for:

  • interactions with the chat as Agent (joining a chat, posting messages)
  • interact with the chat by Bot Agents (acting as Agents)
  • building a custom Agent App
  • browsing chat archives
  • banning Customers
  • and much more

If you plan on using the Agent Chat API as RTM API, refer to Agent Chat RTM API. For the Web API usage, read the Agent Chat Web API document.

Chatting as Agent

The number of chats an Agent can participate in is not limited. It can be configured in the Agent App by the license Owner or Admin.

Customer Chat API

Use cases

The Customer Chat API allows for:

  • interacting with the chat as Customer (join a chat, post messages)
  • building a custom Chat Widget
  • implementing new conversation channels (Facebook Messenger or Twitter)

If you plan on using the Customer Chat API as RTM API, refer to Customer Chat RTM API. For the Web API usage, read the Customer Chat Web API document.

Chatting as Customer

By default, a Customer can only have one chat started, unless he chats with Agents who use different licences. The licence Owner or Admin can change that default value, modifying the routing.max_customer_chats_count property. However, in order to support this functionality, you would need to build a custom Chat Widget. For now, the LiveChat Chat Widget doesn't support it. You can build a Chat Widget from the ground up using the Chat Widget Customer SDK.

Chats are continuous so Customers can always preview their chats' history. Yet, with multiple concurrent chats Customers can sort their chats out thematically, making sure they know what each chat is about.

Contact us

If you still can't find the answer you're looking for, don't hesitate to contact us at developers@livechat.com! We're also open for you suggestions and feedback on the document itself.