API version

RTM API Reference

Introduction

Versioning

This documentation describes the Agent Chat Real-Time Messaging API v3.1. This is the legacy version. We encourage you to migrate to the latest stable version. Read more about versioning...

What is RTM API

Real-Time Messaging API (RTM API) is based on a websocket-like connection. Client can send a request message that results in getting a response message. It's also possible to get push messages.

When to use RTM API

If you're wondering which API to use - Agent Chat RTM API or Web API, keep on reading.

Real-Time Messaging API allows for building stateful integrations that require logging in and maintaining the connection. Since connection maintenance is required, the implementation might be more challenging than with Web API.

Agent Chat RTM API enables communication in real time. It supports pushes like sneak peek, typing indicator, and other. Web API doesn’t have equivalent webhooks, which means you won't be informed about certain events using Web API.

Also, the RTM API will be a better choice if you want to avoid time delays or presume significant traffic. Not what you're looking for? Perhaps, you need to use Agent Chat Web API instead.

Access

The basics on authorization, server pinging, and scopes in the Agent Chat RTM API.

Authorization

Agent authorization is handled with access tokens. Find out how to get an access token from Agent authorization flows. You need to authorize within 30 seconds from establishing the connection. Otherwise, the connection will be closed. Given that the connection is continuosly maintained, you only need to authorize once.

Server pinging

After successful authorization, the client needs to ping the server every 15 seconds. Otherwise, the connection will be closed after about 30 seconds of inactivity. Until authorization is completed, ping is a no-op.

Use one of these 2 ways of pinging the server:

  • Protocol message with the ping action

For web applications and backend integrations (e.g. in Python, Go). Send the following request every 15 seconds:

{
  "action": "ping",
  "payload": {}
}

After pinging the server, the client will receive a response with the ping action. Thanks to that, the client can make sure the connection is still alive.

  • The control frame ping in the websocket protocol

For backend integrations; unavailable in web browsers. Read more about the control frame ping.

Scopes

All authorization scopes are listed in the Scopes document. If a method requires particular authorization scopes, you'll find them included in the method description.

Data centers

LiveChat system operates in two data centers: dal (USA) and fra (Europe). The default data center is dal.

For backend applications, you can specify the region in the request header. The mechanism is the same as in Agent Chat Web API reference. It doesn't work for frontend applications, though. Instead, frontend apps connect to a region different than the default one by specifying the region suffix in the URL.

fra: wss://api-fra.livechatinc.com/v3.1/agent/rtm/ws

dal: wss://api.livechatinc.com/v3.1/agent/rtm/ws

Rate limits

To prevent sending a massive number of requests, there are rate limits for method calls. After exceeding those limits, the requester will get a Too many requests error in the response of a specific request. After some time, the request will be unblocked so it can be sent again.

Events

One of the data structures are events. They are sent to a chat via the send_event method. Apart from events, there are also Properties, Users, and Other data structures.

These are the available event types:

File

The File event informs about an uploaded file.

Request

ParameterRequiredData typeNotes
custom_idnostring
typeyesstringfile
recipientsyesstringPossible values: all (default), agents
propertiesnoobjectProperties
urlyesstringHas to point to the LiveChat CDN. It's recommended to use the URL returned by upload_file.

Response

FieldReturnedNotes
idalways
custom_idoptionally
created_atalwaysDate & time format with a resolution of microseconds, UTC string.
typealways
author_idalways
recipientsalways
propertiesoptionally
namealways
urlalways
thumbnail_url, thumbnail2x_urlonly for images
content_typealways
size, width, heightonly for images
Sample File in response
Copied!
{
  "id": "0affb00a-82d6-4e07-ae61-56ba5c36f743", // generated server-side
  "custom_id": "31-0C-1C-07-DB-16",
  "type": "file",
  "author_id": "b7eff798-f8df-4364-8059-649c35c9ed0c", // generated server-side
  "created_at": "2017-10-12T15:19:21.010200Z", // generated server-side
  "recipients": "all",
  "properties": {
    // "Properties" object
  },
  "name": "image25.png", // generated server-side
  "url": "https://example.com/image25.png",
  "thumbnail_url": "https://example.com/thumbnail.png", // generated server-side
  "thumbnail2x_url": "https://example.com/thumbnail2x.png", // generated server-side
  "content_type": "image/png", // generated server-side
  "size": 123444, // generated server-side
  "width": 640, // generated server-side
  "height": 480 // generated server-side
}

Filled form

The Filled form event contains data from a form (prechat or postchat survey).

Request

ParameterRequiredData typeNotes
custom_idnostring
typeyesstringfilled_form
recipientsyesstringPossible values: all (default), agents
propertiesnoobjectProperties
form_idyesstring
fieldsyesarrayThe fields a form contains. See filled form fields for details.

Response

FieldReturnedNotes
idalways
custom_idoptionally
created_atalwaysDate & time format with a resolution of microseconds, UTC string.
typealways
author_idalways
recipientsalways
propertiesoptionally
form_idalways
fieldsalwaysAn array of filled form fields
Sample Filled form in response
Copied!
{
    "id": "0affb00a-82d6-4e07-ae61-56ba5c36f743", // generated server-side
    "custom_id": "31-0C-1C-07-DB-16",
    "type": "filled_form",
    "author_id": "b7eff798-f8df-4364-8059-649c35c9ed0c", // generated server-side
    "created_at": "2017-10-12T15:19:21.010200Z",  // generated server-side
    "recipients": "all",
    "properties": {
        // "Properties" object
    },
    "form_id": "1473433500211",
    "fields": [{
        "type": "name",
        "id": "154417206262603539",
        "label": "Your name",
        "answer": "John Doe"
    }, {
        "type": "email",
        "id": "154417206262601584",
        "label": "Your email",
        "answer": "customer1@example.com"
    }, {
        "type": "radio",
        "id": "154417206262602571",
        "label": "Chat purpose",
        "answer": {
                "id": "0",
                "label": "Support"
        }
    }, {
        "type": "checkbox",
        "id": "154417206262604640",
        "label": "Company industry",
        "answers": [{
            "id": "0"
            "label": "automotive"
        }, {
            "id": "1"
            "label": "it"
        }]
    }, {
        "type": "group_chooser",
        "id": "154417206262605324",
        "label": "Choose department",
        "answer": {
            "group_id": 1,
            "label": "Marketing"
        }
    }]
}

Message

The Message event contains text message to other chat users.

Request

ParameterRequiredData typeNotes
custom_idnostring
textyesstringMax. raw text size is 16 KB (one UTF-8 char like emoji 😁 can use up to 4 B); to send more, split text into several messages.
typeyesstringmessage
recipientsyesstringPossible values: all (default), agents
propertiesnoobjectProperties
postbacknoobjectIndicates that the message event was generated in response to a rich message event.
postback.idyesstringID of the postback from the rich message event.
postback.thread_idyesstringID of the thread with the rich message event.
postback.event_idyesstringID of the rich message event.
postback.typenostringShould be used together with postback.value (when one of them is present, the other is required).
postback.valuenostringShould be used together with postback.type(when one of them is present, the other is required).

Response

FieldReturnedNotes
idalways
custom_idoptionally
created_atalwaysDate & time format with a resolution of microseconds, UTC string.
typealwaysmessage
author_idalways
recipientsalways
textalways
postbackoptionallyAppears in a message only when triggered by a rich message.
postback.idalways
postback.thread_idalways
postback.event_idalways
postback.typeoptionallyAppears only if postback.value is present.
postback.valueoptionallyAppears only if postback.type is present.
propertiesoptionallyProperties
Sample Message in response
Copied!
{
  "id": "0affb00a-82d6-4e07-ae61-56ba5c36f743", // generated server-side
  "custom_id": "31-0C-1C-07-DB-16",
  "type": "message",
  "author_id": "b7eff798-f8df-4364-8059-649c35c9ed0c", // generated server-side
  "created_at": "2017-10-12T15:19:21.010200Z", // generated server-side
  "text": "hello there",
  "postback": {
    "id": "action_call",
    "thread_id": "K600PKZON8",
    "event_id": "75a90b82-e6a4-4ded-b3eb-cb531741ee0d",
    "type": "phone",
    "value": "790034890"
  },
  "recipients": "all",
  "properties": {
    // "Properties" object
  }
}

Rich message

Rich message (RM) event contains a rich message data structure. Read more about rich messages.

Request

ParameterRequiredData typeNotes
custom_idnostringYou can give your RM a custom ID.
typeyesstringEvent type: rich_message
recipientsyesstringThose who can display the rich message: all (default) or agents
propertiesnoobjectThe properties data structure
template_idyesstringDefines how every Rich Message will be presented. Values: cards, sticker, or quick_replies.
elementsnoarrayCan contain up to 10 element objects.
elements.titleyesstringDisplays formatted text on RMs.
elements.subtitleyesstringDisplays formatted text on RMs.
elements.imageyesimageDisplays images on RMs. Required param: url; Optional params: name, content_type, size, width, height.
elements.buttonsnoarrayDisplays buttons. Can contain up to 11 button objects.
elements.buttons.textyesstringText displayed on a button.
elements.buttons.typeyesstringDefines the behavior after a user clicks the button. Should be used together with elements.buttons.value. Possible values: webview, message, url, phone. More...
elements.buttons.valueyesstringShould be used together with elements.buttons.type.
elements.buttons.webview_heightyesstringRequired only for the webview buttontype. Possible values: compact, full, tall.
elements.buttons.postback_idyesstringA description of the sent action. Describes the action sent via send_rich_message_postback. More...
elements.buttons.user_idsyesarrayDescribes users that sent the postback with "toggled": true.

Response

FieldReturnedNotes
idalwaysGenerated server-side
custom_idoptionally
typealways
author_idalwaysGenerated server-side
created_atalwaysDate & time format with a resolution of microseconds, UTC string. Generated server-side.
recipientsalways
propertiesoptionally
template_idalways
elementsoptionally
elements.titlealways
elements.subtitlealways
elements.imagealways
elements.buttonsoptionally
elements.buttons.textalways
elements.buttons.typealways
elements.buttons.valuealways
elements.buttons.webview_heightalwaysUnless button type is different than webview.
elements.buttons.postback_idalways
elements.buttons.user_idsalways
Sample Rich message in response
Copied!
{
  "id": "0affb00a-82d6-4e07-ae61-56ba5c36f743",
  "custom_id": "31-0C-1C-07-DB-16",
  "type": "rich_message",
  "author_id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
  "created_at": "2017-10-12T15:19:21.010200Z",
  "recipients": "all",
  "properties": {
    // "Properties" object
  },
  "template_id": "cards",
  "elements": [
    {
      "title": "Lorem ipsum dolor.",
      "subtitle": "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
      "image": {
        "name": "image25.png",
        "url": "https://example.com/image25.png",
        "content_type": "image/png",
        "size": 123444,
        "width": 640,
        "height": 480
      },
      "buttons": [
        {
          "text": "yes",
          "postback_id": "action_yes",
          "user_ids": ["b7eff798-f8df-4364-8059-649c35c9ed0c"]
        },
        {
          "text": "no",
          "postback_id": "action_no",
          "user_ids": []
        },
        {
          "type": "phone",
          "text": "value",
          "value": "790034890",
          "webview_height": "tall",
          "postback_id": "action_call",
          "user_ids": []
        }
      ]
    }
  ]
}

Custom

The Custom event is an event with customizable payload.

Request

ParameterRequiredData typeNotes
custom_idnostringYou can give the event a custom ID.
typeyesstringEvent type: custom
contentnoobjectThe content you define
recipientsyesstringThose who can receive the custom event: all (default) or agents
propertiesnoobjectThe properties data structure

Response

FieldReturnedNotes
idalwaysGenerated server-side
custom_idoptionally
typealways
author_idalwaysGenerated server-side
created_atalwaysDate & time format with a resolution of microseconds, UTC string; generated server-side
contentoptionally
recipientsalways
propertiesoptionally
Sample Custom in response
Copied!
{
  "id": "0affb00a-82d6-4e07-ae61-56ba5c36f743",
  "custom_id": "31-0C-1C-07-DB-16",
  "type": "custom",
  "author_id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
  "created_at": "2017-10-12T15:19:21.010200Z",
  "content": {
    "custom": {
      "nested": "json"
    }
  },
  "recipients": "all",
  "properties": {
    // "Properties" object
  }
}

System message

System message event is native system event sent in specific situations.

Request

ParameterRequiredData typeNotes
custom_idnostringYou can give the system message a custom ID.
typeyesstringsystem_message
textnostringText displayed to recipients
system_message_typeyesstringSystem message type
recipientsnostringIt can be specified when sending system messages via the Send Event method. Possible values: all, agents.
text_varsnoobjectVariables used in the text

Response

FieldReturnedNotes
idalwaysGenerated server-side
custom_idoptionally
typealways
created_atalwaysDate & time format with a resolution of microseconds, UTC string; generated server-side
textoptionally
system_message_typealways
recipientsoptionally
Sample System message in response
Copied!
{
  "id": "0affb00a-82d6-4e07-ae61-56ba5c36f743",
  "custom_id": "31-0C-1C-07-DB-16",
  "type": "system_message",
  "created_at": "2017-10-12T15:19:21.010200Z",
  "text": "Hello there!",
  "system_message_type": "routing.assigned",
  "text_vars": {
    "agent": "John Doe"
  }
}

Users

Users are another important data structure. Within this data structure type, we can distinguish:

Agent

Sample Agent data structure
Copied!
{
  "id": "agent1@example.com",
  "type": "agent",
  "name": "Support Team",
  "email": "agent1@example.com",
  "present": true,
  "events_seen_up_to": "2017-10-12T15:19:21.010200Z",
  "avatar": "cdn.livechatinc.com/avatars/1.png",
  "routing_status": "accepting_chats"
}
FieldReq./Opt.Note
routing_statusoptionalReturned only if the Agent's currently logged in.
events_seen_up_tooptionalRFC 3339 datetime string; the timestamp of the most recent event seen by the Agent—all the previous events are considered seen.

My profile

Sample My profile data structure
Copied!
{
  "id": "agent1@example.com",
  "type": "agent",
  "name": "Support Team",
  "email": "agent1@example.com",
  "present": true,
  "events_seen_up_to": "2017-10-12T15:19:21.010200Z",
  "avatar": "cdn.livechatinc.com/avatars/1.png",
  "routing_status": "accepting_chats",
  "permission": "administrator"
}

Customer

Sample Customer data structure
Copied!
{
  "id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
  "type": "customer",
  "name": "John Smith",
  "email": "customer1@example.com",
  "avatar": "example.com/avatars/1.png",
  "last_visit": {
    "started_at": "2017-10-12T15:19:21.010200Z",
    "referrer": "http://www.google.com/",
    "ip": "<ip>",
    "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36",
    "geolocation": {
      "country": "Poland",
      "country_code": "PL",
      "region": "Dolnoslaskie",
      "city": "Wroclaw",
      "timezone": "Europe/Warsaw"
    },
    "last_pages": [
      {
        "opened_at": "2017-10-12T15:19:21.010200Z",
        "url": "https://www.livechat.com/",
        "title": "LiveChat - Homepage"
      },
      {
        "opened_at": "2017-10-12T15:19:21.010200Z",
        "url": "https://www.livechat.com/tour",
        "title": "LiveChat - Tour"
      }
    ]
  },
  "fields": {
    "custom field name": "custom field value"
  },
  "statistics": {
    "chats_count": 3,
    "threads_count": 9,
    "visits_count": 5
  },
  "__priv_lc2_customer_id": "test_771305.dafea66e5c", //old customer_id
  "agent_last_event_created_at": "2017-10-12T15:19:21.010200Z",
  "customer_last_event_created_at": "2017-10-12T15:19:21.010200Z",
  "created_at": "2017-10-11T15:19:21.010200Z",
  "present": true, // optional, applies only to customer located in chat object
  "events_seen_up_to": "2017-10-12T15:19:21.010200Z"
}
FieldReq./Opt.Note
agent_last_event_created_atoptional
avataroptional
customer_last_event_created_atoptional
created_atoptional
emailoptional
fieldsoptionalIsn't present when the chat is archived.
nameoptional
events_seen_up_tooptionalRFC 3339 datetime string
last_visitoptional
presentoptional
statisticsoptional

Other common structures

Apart from Events and Users, there are also other common data structures you might work with. Those are:

Access

Sample Access data structure
Copied!
{
  "access": {
    "group_ids": [1, 2]
  }
}
FieldReq./Opt.Note
group_idsrequiredgroup 0 means that all agents can see it.

Chats

Sample Chat data structure
Copied!
{
  "id": "PJ0MRSHTDG",
  "users": [
    // array of "User" objects
  ],
  "threads": [
    // optional
    // "Thread" object
  ],
  "threads_summary": [
    {
      "thread_id": "K600PKZON8",
      "order": 129846129847
    },
    {
      "thread_id": "K600PKZON8",
      "order": 129846129848
    }
  ],
  "properites": {
    // "Properites" object
  },
  "access": {
    // "Access" object
  },
  "is_followed": true
}
FieldReq./Opt.Note
propertiesoptional
accessoptional

Chat summaries

Chat summary is similar to the Chat data structure. The difference is that Chat contains a thread object, while Chat summary includes last_thread_summary and last_event_per_type.

Sample Chat summary data structure
Copied!
{
  "id": "PJ0MRSHTDG",
  "users": [
    // array of "User" objects
  ],
  "last_event_per_type": {
    // last event of each type in chat
    "message": {
      "thread_id": "K600PKZON8",
      "thread_order": 3,
      "event": {
        // "restricted_access": true
        // or
        // "Event > Message" object
      }
    },
    "system_message": {
      "thread_id": "K600PKZON6",
      "thread_order": 1,
      "event": {
        // "restricted_access": true
        // or
        // "Event > System message" object
      }
    }
    // ...
  },
  "last_thread_summary": {
    "id": "K600PKZON8",
    "order": 3,
    "timestamp": 1473433500,
    "user_ids": ["agent1@example.com"],
    "properites": {
      // "Properites" object
    },
    "tags": ["bug_report"]
  },
  "properites": {
    // "Properites" object
  },
  "access": {
    // "Access" object
  },
  "is_followed": false
}

Filled form fields

A component of the Filled form event.

FieldRequiredData typeNotes
fieldsyesarray of objectsThe fields a form contains.
typeyesstringPossible values: checkbox, email, name, question, textarea, group_chooser, radio, select
idyesstringField id, for all field types
labelyesstringField label; for all field types
answeryesanyFor all field types
answer.idyesstringAnswer id; for all field types
answer.labelyesstringAnswer label; for all field types
answer.group_idyesnumberFor group_chooser
Response
Copied!
{
    "fields": [{
        "type": "name",
        "id": "154417206262603539",
        "label": "Your name",
        "answer": "John Doe"
    }, {
        "type": "email",
        "id": "154417206262601584",
        "label": "Your email",
        "answer": "customer1@example.com"
    }, {
        "type": "radio",
        "id": "154417206262602571",
        "label": "Chat purpose",
        "answer": {
                "id": "0",
                "label": "Support"
        }
    }, {
        "type": "checkbox",
        "id": "154417206262604640",
        "label": "Company industry",
        "answers": [{
            "id": "0"
            "label": "automotive"
        }, {
            "id": "1"
            "label": "it"
        }]
    }, {
        "type": "group_chooser",
        "id": "154417206262605324",
        "label": "Choose department",
        "answer": {
            "group_id": 1,
            "label": "Marketing"
        }
    }]
}

Properties

Properties are key-value storages. They can be set within a chat, a thread, or an event. You can read more about properties in the Configuration API document.

Sample Properties data structure
Copied!
{
  "properties": {
    "rating": {
      // <property_namespace>
      "score": {
        // <property_name>
        "value": 1 // <property_value>
      },
      "comment": {
        "value": "rated good!"
      }
    },
    "routing": {
      "idle": {
        "value": false
      }
    }
  }
}

Threads

Sample Thread data structure
Copied!
{
  "id": "K600PKZON8",
  "timestamp": 1473433500,
  "active": true,
  "user_ids": ["agent1@example.com"],
  "restricted_access": true,
  "events": [
    // array of "Event" objects
  ],
  "order": 112057129857,
  "properties": {
    // "Properties" object
  },
  "access": {
    // "Access" object
  }
}
FieldReq./Opt.Note
accessoptional-
activerequiredPossible values: true (thread is still active) or false(thread no longer active)
eventsoptionalDoesn't exists if restricted_access is true.
propertiesoptional-
restricted_accessoptional-

Methods

In the websocket transport, actions generate pushes. RTM API actions can also trigger webhooks, but they need to be registered first.

GENERAL RTM API REQUEST FORMAT
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "<action>",
  "payload": {
    // optional
  },
  "author_id": "<author_id>" // optional, applies only to bots
}
GENERAL RTM API RESPONSE FORMAT
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "<action>",
  "type": "response",
  "success": true,
  "payload": {
    // optional
  }
}

Chats

Get Chats Summary

It returns summaries of the chats an Agent has access to.

Specifics
Actionget_chats_summary
Required scopes *chats--all:ro chats--access:ro chats--my:ro
Web API equivalentget_chats_summary
Push message-
Request
ParameterRequiredTypeNotes
filtersNoobjectMustn't change between requests for subsequent pages. Otherwise, the behavior is undefined.
filters.include_activeNoboolDefines if the returned chat summary includes active chats; default: true.
filters.group_idsNoarrayArray of group IDs.
filters.properties.<namespace>.<name>.<filter_type>Noany
orderNostringPossible values: asc - oldest chats firstm desc - newest chats first (default)
limitNonumberDefault: 10, maximum: 100
page_idNostring

filter_type can take the following values:

  • exists (bool)
  • values (type[] - array with specific type for property: string, int, or bool)
  • exclude_values (type[] - array with specific type for property: string, int, or bool)

There's only one value allowed for a single property.

Response
FieldData typeNotes
found_chatsnumberAn estimated number. The real number of found chats can slightly differ .
next_page_idstringIn relation to page_id specified in the request.
previous_page_idstringIn relation to page_id specified in the request.
REQUEST
Copied!
{
  "action": "get_chats_summary",
  "payload": {}
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "get_chats_summary",
  "type": "response",
  "success": true,
  "payload": {
    "next_page_id": "MTUxNzM5ODEzMTQ5Ng==", // optional
    "chats_summary": [
        {
            "id": "PJ0MRSHTDG",
            "last_event_per_type": {
                "message": {
                    "thread_id": "K600PKZON8",
                    "thread_order": 1,
                    "event": {
                        "id": "Q298LUVPRH_1",
                        "created_at": "2019-12-09T12:01:18.909000Z",
                        "recipients": "all",
                        "type": "message",
                        "text": "hello world",
                        "author_id": "5ae8b076-03b0-43db-44f9-b95f8ead62e4"
                    }
                },
                "system_message": {
                    "thread_id": "K600PKZON8",
                    "thread_order": 1,
                    "event": {
                      // "System message" event
                    }
                }
            },
            "users": [
                {
                  // "Customer" user object
                },
                {
                  // "Agent" user object
                }
            ],
            "last_thread_summary": {
                "id": "K600PKZON8",
                "timestamp": 1575892853,
                "user_ids": [
                    "5ae8b076-03b0-43db-44f9-b95f8ead62e4",
                    "customer1@example.com"
                ],
                "order": 1,
                "properties": {
                  // "Properties" object
                },
                "active": true,
                "access": {
                    "group_ids": [0]
                }
            },
            "properties": {
              // "Properties" object
            },
            "access": {
                "group_ids": [0]
            },
            "order": 1575892853242000,
            "is_followed": true
             }
      ],
      "found_chats": 4
    }
}

Get Chat Threads Summary

Specifics
Actionget_chat_threads_summary
Required scopeschats--all:ro chats--access:ro chats--my:ro
Web API equivalentget_chat_threads_summary
Push message-
Request
ParameterRequiredData ypeNotes
chat_idYesstring
orderNostringPossible values: asc - oldest chats first, desc - newest chats first (default)
limitNonumberDefaul: 10, maximum: 100
page_idNostring
Response
FieldData typeNotes
found_threadsnumberThe number of threads in a chat
next_page_idstringIn relation to page_id specified in the request.
previous_page_idstringIn relation to page_id specified in the request.
REQUEST
Copied!
{
  "action": "get_chat_threads_summary",
  "payload": {
    "chat_id": "PJ0MRSHTDG"
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "get_chat_threads_summary",
  "type": "response",
  "success": true,
  "payload": {
    "threads_summary": [
      {
        "id": "PT039ES4OG",
        "order": 2,
        "events_count": 2
      },
      {
        "id": "PT039DS6IP",
        "order": 1,
        "events_count": 17
      }
    ],
    "found_threads": 7,
    "next_page_id": "MTUxNzM5ODEzMTQ5Ng==", // optional
    "previous_page_id": "MTUxNzM5ODEzMTQ5Nw==" // optional
  }
}

Get Chat Threads

It returns threads that the current Agent has access to in a given chat.

Specifics
Actionget_chat_threads
Required scopeschats--all:ro chats--access:ro
Web API equivalentget_chat_threads
Push message-
Request
ParameterRequiredData ype
chat_idYesstring
thread_idsNoarray
REQUEST
Copied!
{
  "action": "get_chat_threads",
  "payload": {
    "chat_id": "PJ0MRSHTDG"
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "get_chat_threads",
  "type": "response",
  "success": true,
  "payload": {
    {
    "chat": {
        "id": "PWJ8Y4THAV",
        "users": [
            {
                "id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
                "type": "customer",
                "present": true,
                "created_at": "2019-12-17T08:53:20.693553+01:00",
                "statistics": {
                    "chats_count": 1,
                    // ...
                },
                "agent_last_event_created_at": "2019-12-17T09:04:05.239000+01:00"
            },
            {
                "id": "agent1@example.com",
                "name": "Agent Name",
                "email": "agent1@example.com",
                "type": "agent",
                "present": true,
                "avatar": "https://example.com/avatar.jpg"
            }
        ],
        "threads_summary": [
            {
                "thread_id": "Q20N9CKRX2",
                "order": 1
            }
        ],
        "properties": {
          // "Property" object
        },
        "access": {
            "group_ids": [0]
        },
        "is_followed": true
    }
  }
}

Get Archives

It returns a list of the chats an Agent has access to. Together with a chat, the events of one thread from this chat are returned.

The list classification is based on threads; 1 chat per 1 thread. Thus, the same chat object may appear on the list several times, but each time with a different thread. The returned chat is a complete object, not only a chat summary.

Specifics
Actionget_archives
Required scopeschats--all:ro chats--access:ro chats--my:ro
Web API equivalentget_archives
Push message-
Request
ParameterRequiredData typeNotes
filtersNoobject
filters.queryNostring
filters.date_fromNostringYYYY-MM-DD format
filters.date_toNostringYYYY-MM-DD format
filters.agent_idsNoarrayArray of agent IDs
filters.thread_idsNoarrayArray of thread IDs. Cannot be used with other filters or pagination; max array size: 20.
filters.group_idsNoarrayArray of group IDs
filters.properties.<namespace>.<name>.<filter_type>Noany* described below
filters.tags.<filter_type>Noany
filters.sales.<filter_type>Noany
filters.goals.<filter_type>Noany
filters.surveys.<survey>Noarray** described below
paginationNoobject
pagination.pageNonumberDefault: 1, min: 1, max: 1000
pagination.limitNonumberDefault: 25, min: 0, max: 100

*)

sort_order can take the following values:

  • asc - the oldest chats first
  • desc - the newest chats first

<filter_type> can take the following values:

  • exists (bool)
  • values (type[] - an array with a specific type for property: string, int or bool)
  • exclude_values (type[] - an array with a specific type for property: string, int or bool)

There's only one value allowed for a single property.

**) <survey> contains the following fields:

  • type (string) - allowed values: pre_chat, post_chat
  • answer_id (string)
REQUEST
Copied!
{
  "action": "get_archives",
  "payload": {
    "filters": {
      "thread_ids": ["K600PKZON8"]
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "get_archives",
  "type": "response",
  "success": true,
  "payload": {
    "chats": [
      {
        "id": "PJ0MRSHTDG",
        "users": [
          {
            "id": "smith@example.com",
            "name": "Agent Smith",
            "email": "smith@example.com",
            "type": "agent",
            "present": true,
            "avatar": "https://cdn.livechatinc.com/cloud/?uri=avatar.jpg"
          }
        ],
        "thread": {
          "id": "K600PKZON8",
          "timestamp": 1590666298,
          "active": false,
          "user_ids": [
            "smith@example.com"
          ],
          "events": [
            {
              "id": "QBT14H0Y3Y_1",
              "created_at": "2020-05-28T11:45:32.269000Z",
              "recipients": "all",
              "type": "message",
              "properties": {
                "0805e283233042b37f460ed8fbf22160": {
                  "event_property": {
                    "value": "property_value"
                  }
                }
              },
              "text": "Hello, how can I help you?",
              "author_id": "smith@example.com"
            }
          ],
          "order": 1,
          "properties": {
            "0805e283233042b37f460ed8fbf22160": {
              "thread_property": {
                "value": "property_value"
              }
            }
          },
          "access": {
            "group_ids": [
              0
            ]
          }
        },
        "properties": {
          "0805e283233042b37f460ed8fbf22160": {
            "chat_property": {
              "value": "property_value"
            }
          },
        },
        "access": {
          "group_ids": [
            0
          ]
        },
        "is_followed": false
      }
    ],
    "found_chats": 42,
    "next_page_id": "MTUxNzM5ODEzMTQ5Ng==",
    "previous_page_id": "MTUxNzM5ODEzMTQ5Ng=="
  }
}

Start Chat

Starts a chat.

Specifics
Actionstart_chat
Required scopes *chats.conversation--all:rw chats.conversation--access:rw chats.conversation--my:rw
Web API equivalentstart_chat
Push messageincoming_chat_thread

*) When chat.users is defined, one of following scopes is required:

  • chats--all:rw
  • chats--access:rw
  • chats--my:rw
Request
ParameterRequiredData typeNotes
chatNoobject
chat.propertiesNoobject
chat.accessNoobject
chat.usersNoarrayThe list of existing users. Only one user is allowed (type customer).
chat.threadNoobject
chat.thread.eventsNoarrayThe list of initial chat events
chat.thread.propertiesNoobject
continuousNoboolStarts chat as continuous (online group is not required); default: false.
Response
FieldData typeNotes
chat_idstring
thread_idstring
event_ids[]stringReturned only when the chat was started with initial events. Returns only the IDs of user-generated events; server-side generated events are not included in the array.
REQUEST
Copied!
{
  "action": "start_chat",
  "payload": {}
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "start_chat",
  "type": "response",
  "success": true,
  "payload": {
      "chat_id": "PJ0MRSHTDG",
      "thread_id": "PGDGHT5G"
    }
}

Activate Chat

Restarts an archived chat.

Specifics
Actionactivate_chat
Required scopes *chats.conversation--all:rw chats.conversation--access:rw chats.conversation--my:rw
Web API equivalentactivate_chat
Push messageincoming_chat_thread

*) When chat.users is defined, one of following scopes is required:

  • chats--all:rw
  • chats--access:rw
  • chats--my:rw
Request
ParameterRequiredTypeNotes
chatYesobject
chat.idYesstringThe ID of the chat that will be activated.
chat.accessNoobjectChat access to set, default: all agents.
chat.propertiesNoobjectInitial chat properties
chat.usersNoarrayList of existing users. Only one user is allowed (type customer).
chat.threadNoobject
chat.thread.eventsNoarrayInitial chat events array
chat.thread.propertiesNoobjectInitial chat thread properties
continuousNoboolSets a chat to the continuous mode. When unset, leaves the mode unchanged.
Response
FieldData typeNotes
thread_idstring
event_ids[]stringReturned only when the chat was activated with initial events. Returns only the IDs of user-generated events; server-side generated events are not included in the array.
REQUEST
Copied!
{
  "action": "activate_chat",
  "payload": {
    "chat": {
      "id": "PWJ8Y4THAV"
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "<action>",
  "type": "response",
  "success": true,
  "payload": {
    "thread_id": "Z8AGR5OUW"
  }
}

Close Thread

Closes a thread. Sending messages to this thread will no longer be possible.

Specifics
Actionclose_thread
Required scopeschats--all:rw chats--access:rw chats--my:rw
Web API equivalentclose_thread
Push messagethread_closed
Request
ParameterRequiredData type
chat_idYesstring
REQUEST
Copied!
{
  "action": "close_thread",
  "payload": {
    "chat_id": "PJ0MRSHTDG"
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "close_thread",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Follow Chat

Marks a chat as followed. All changes to the chat will be sent to the requester until the chat is reactivated or unfollowed. Chat members don't need to follow their chats. They receive all chat pushes regardless of their follower status.

Specifics
Actionfollow_chat
Required scopeschats--all:rw chats--access:rw chats--my:rw
Web API equivalentfollow_chat
Push messageincoming_chat_thread*

*) It won't be sent when the requester already follows the chat or is the chat member.

Request
ParameterRequiredData type
chat_idYesstring
REQUEST
Copied!
{
  "action": "follow_chat",
  "payload": {
    "chat_id": "PW94SJTGW6"
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "follow_chat",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Unfollow Chat

Removes the requester from the chat followers. After that, only key changes to the chat (like transfer_chat or close_active_thread) will be sent to the requester. Chat members cannot unfollow the chat.

Specifics
Actionunfollow_chat
Required scopes-
Web API equivalentunfollow_chat
Push message-
Request
ParameterRequiredData type
chat_idYesstring
REQUEST
Copied!
{
  "action": "unfollow_chat",
  "payload": {
    "chat_id": "PWF6BACIKO"
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "unfollow_chat",
  "type": "response",
  "success": true,
  "payload": {
    "chat_id": "PWF6BACIKO"
  }
}

Chat access

Grant Access

Grants access to a new resource without overwriting the existing ones.

Specifics
Actiongrant_access
Required scopeschats--all:rw chats--access:rw chats--my:rw
Web API equivalentgrant_access
Push messageaccess_granted
Request
ParameterRequiredData ypeNotes
resourceYesstringchat or customer
idYesstringResource Id
accessYesobjectThe entity that is granted access to the specified resource
access.typeYesstringgroup
access.idYesnumber
REQUEST
Copied!
{
  "action": "grant_access",
  "payload": {
    "resource": "chat",
    "id": "PW94SJTGW6",
    "access": {
      "type": "group",
      "id": 19
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "grant_access",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Revoke Access

Specifics
Actionrevoke_access
Required scopeschats--all:rw chats--access:rw chats--my:rw
Web API equivalentrevoke_access
Push messageaccess_revoked
Request
ParameterRequiredData typeNotes
resourceYesstringchat or customer
idYesstringResource Id
accessYesobjectThe entity that loses access to the specified resource
access.typeYesstringgroup
access.idYesnumber
REQUEST
Copied!
{
  "action": "revoke_access",
  "payload": {
    "resource": "chat",
    "id": "PW94SJTGW6",
    "access": {
      "type": "group",
      "id": 19
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "revoke_access",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Set Access

Gives access to a new resource overwriting the existing ones.

Specifics
Actionset_access
Required scopeschats--all:rw chats--access:rw chats--my:rw
Web API equivalentset_access
Push messageaccess_set
Request
ParameterRequiredTypeNotes
resourceYesstringchat or customer
idYesstringResource Id
accessYesobjectThe entity that is given access to the specified resource
access.typeYesstringgroup
access.idYesnumber
REQUEST
Copied!
{
  "action": "set_access",
  "payload": {
    "resource": "chat",
    "id": "PW94SJTGW6",
    "access": {
      "type": "group",
      "id": 19
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "set_access",
  "type": "response",
  "success": true,
  "payload": {
    // no response optional
  }
}

Transfer Chat

Transfers a chat to an Agent or a group. When transferring directly to an agent, the agent must have access to the transferred chat.

Specifics
Actiontransfer_chat
Required scopeschats--all:rw chats--access:rw chats--my:rw
Web API equivalenttransfer_chat
Push messagechat_transferred
Request
ParameterRequiredData ypeNotes
chat_idYesstringResource Id
targetNoobjectIf missing, the chat will be transferred within the current group.
target.typeYesstringgroup or agent
target.idsYesarraygroup or agent IDs array
forceNoboolIf true, always transfers chats. Otherwise, fails when unable to assign any Agent from the requested groups; default false.
REQUEST
Copied!
{
  "action": "transfer_chat",
  "payload": {
    "chat_id": "PWF6BACIKO",
    "target": {
      "type": "group",
      "ids": [19]
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "transfer_chat",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Chat users

Add User to Chat

Adds a user to the chat. You can't add more than one customer user type to the chat.

Specifics
Actionadd_user_to_chat
Required scopeschats--all:rw chats--access:rw chats--my:rw
Web API equivalentadd_user_to_chat
Push messagechat_user_added
Request
ParameterRequiredTypeNotes
chat_idYesstring
user_idYesstring
user_typeYesstringPossible values: agent or customer
REQUEST
Copied!
{
  "action": "add_user_to_chat",
  "payload": {
    "chat_id": "PW94SJTGW6",
    "user_id": "agent1@example.com",
    "user_type": "agent"
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "add_user_to_chat",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Remove User from Chat

Removes a user from chat. Removing customer user type is not allowed. It's always possible to remove the requester from chat.

Specifics
Actionremove_user_from_chat
Required scopeschats--all:rw chats--access:rw chats--my:rw
Web API equivalentremove_user_from_chat
Push messagechat_user_removed

Request payload

ParameterRequiredTypeNotes
chat_idYesstring
user_idYesstring
user_typeYesstringPossible values are agent or customer
REQUEST
Copied!
{
  "action": "remove_user_from_chat",
  "payload": {
    "chat_id": "PW94SJTGW6",
    "user_id": "agent1@example.com",
    "user_type": "agent"
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "remove_user_from_chat",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Events

Send Event

Sends an Event object. Use this method to send a message by specifing the Message event type in the request.

It's possible to write to a chat without joining it. The user sending an event will be automatically added to the chat with the present parameter set to false (see chat_user_added). Sample use case: a Bot Agent that sends messages visible to all chat participants without actually joining the chat.

Specifics
Actionsend_event
Required scopeschats.conversation--all:rw chats.conversation--access:rw chats.conversation--my:rw
Web API equivalentsend_event
Push messageincoming_event
Request
ParametersRequiredData typeNotes
chat_idYesstringId of the chat you want to send the message to.
eventYesobjectEvent object
attach_to_last_threadNoboolThe flag is ignored for active chats. For inactive chats: true – the event will be added to the last thread; false – the request will fail. Default: false.
REQUEST
Copied!
{
  "action": "send_event",
  "payload": {
    "chat_id": "PW94SJTGW6",
    "event": {
      "type": "message",
      "text": "hello world",
      "recipients": "all"
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "send_event",
  "type": "response",
  "success": true,
  "payload": {
      "event_id": "K600PKZON8"
    }
}

Send Rich Message Postback

Specifics
Actionsend_rich_message_postback
Required scopeschats.conversation--my:rw chats.conversation--all:rw
Web API equivalentsend_rich_message_postback
Push messageincoming_rich_message_postback*

*) incoming_rich_message_postback will be sent only for active threads.

Request
ParameterRequiredData typeNotes
chat_idYesstring
event_idYesstring
postbackYesobject
postback.idYesstringPostback name of the button
postback.toggledYesboolPostback toggled; true or false
thread_idYesstring
REQUEST
Copied!
{
  "action": "send_rich_message_postback",
  "payload": {
    "chat_id": "PJ0MRSHTDG",
    "thread_id": "K600PKZON8",
    "event_id": "a0c22fdd-fb71-40b5-bfc6-a8a0bc3117f7",
    "postback": {
      "id": "Method URL_yes",
      "toggled": true
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "send_rich_message_postback",
  "type": "response",
  "success": true,
  "payload": {
    //no response payload
  }
}

Properties

Update Chat Properties

Specifics
Actionupdate_chat_properties
Required scopeschats.conversation--all:rw chats.conversation--access:rw chats.conversation--my:rw
Web API equivalentupdate_chat_properties
Push messagechat_properties_updated
Request
ParameterRequiredData typeNotes
chat_idYesstringId of the chat you to set a property for.
propertiesYesobjectChat properties to set. You should stick to the general properties format and include namespace, property name and value.
REQUEST
Copied!
{
  "action": "update_chat_properties",
  "payload": {
    "chat_id": "PW94SJTGW6",
    "properties": {
      "bb9e5b2f1ab480e4a715977b7b1b4279": {
        "score": 10,
        "comment": "Thank you!"
      }
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "update_chat_properties",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Delete Chat Properties

Specifics
Actiondelete_chat_properties
Required scopeschats.conversation--all:rw chats.conversation--access:rw chats.conversation--my:rw
Web API equivalentdelete_chat_properties
Push messagechat_properties_deleted
Request
ParameterRequiredData typeNotes
chat_idYesstringId of the chat you want to delete property for.
propertiesYesobjectChat properties to delete.
REQUEST
Copied!
{
  "action": "delete_chat_properties",
  "payload": {
    "chat_id": "PW94SJTGW6",
    "properties": {
      "bb9e5b2f1ab480e4a715977b7b1b4279": ["score", "comment"]
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "delete_chat_properties",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Update Chat Thread Properties

Specifics
Actionupdate_chat_thread_properties
Required scopeschats.conversation--all:rw chats.conversation--access:rw chats.conversation--my:rw
Web API equivalentupdate_chat_thread_properties
Push messagechat_thread_properties_updated
Request
ParameterRequiredData typeNotes
chat_idYesstringId of the chat you want to set properties for.
thread_idYesstringId of the thread you want to set properties for.
propertiesYesobjectChat properties to set. You should stick to the general properties format and include namespace, property name and value.
REQUEST
Copied!
{
  "action": "update_chat_thread_properties",
  "payload": {
    "chat_id": "PW94SJTGW6",
    "thread_id": "K600PKZON8",
    "properties": {
      "bb9e5b2f1ab480e4a715977b7b1b4279": {
        "score": 10,
        "comment": "Thank you!"
      }
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "update_chat_thread_properties",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Delete Chat Thread Properties

Specifics
Actiondelete_chat_thread_properties
Required scopeschats.conversation--all:rw chats.conversation--access:rw chats.conversation--my:rw
Web API equivalentdelete_chat_thread_properties
Push messagechat_thread_properties_deleted
Request
ParameterRequiredData typeNotes
chat_idYesstringId of the chat you want to delete property for.
thread_idYesstringId of the thread you want to delete property for.
propertiesYesobjectChat thread properties to delete.
REQUEST
Copied!
{
  "action": "delete_chat_thread_properties",
  "payload": {
    "chat_id": "PW94SJTGW6",
    "thread_id": "K600PKZON8",
    "properties": {
      "bb9e5b2f1ab480e4a715977b7b1b4279": ["score", "comment"]
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "delete_chat_thread_properties",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Update Event Properties

Specifics
Actionupdate_event_properties
Required scopeschats.conversation--all:rw chats.conversation--access:rw chats.conversation--my:rw
Web API equivalentupdate_event_properties
Push messageevent_properties_updated
Request
ParameterRequiredData typeNotes
chat_idYesstringId of the chat you want to set properties for.
thread_idYesstringId of the thread you want to set properties for.
event_idYesstringId of the event you want to set properties for.
propertiesYesobjectChat properties to set.
REQUEST
Copied!
{
  "action": "update_event_properties",
  "payload": {
    "chat_id": "PW94SJTGW6",
    "thread_id": "K600PKZON8",
    "event_id": "2_EW2WQSA8",
    "properties": {
      "bb9e5b2f1ab480e4a715977b7b1b4279": {
        "score": 10,
        "comment": "Thank you!"
      }
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "update_event_properties",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Delete Event Properties

Specifics
Actiondelete_event_properties
Required scopeschats.conversation--all:rw chats.conversation--access:rw chats.conversation--my:rw
Web API equivalentdelete_event_properties
Push messageevent_properties_deleted
Request
ParameterRequiredData typeNotes
chat_idYesstringId of the chat you want to delete the properties of.
thread_idYesstringId of the thread you want to delete the properties of.
event_idYesstringId of the event you want to delete the properties of.
propertiesYesobjectEvent properties to delete. You should stick to the general properties format and include namespace, property name and value.
REQUEST
Copied!
{
  "action": "delete_event_properties",
  "payload": {
    "chat_id": "PW94SJTGW6",
    "thread_id": "K600PKZON8",
    "event_id": "2_EW2WQSA8",
    "properties": {
      "bb9e5b2f1ab480e4a715977b7b1b4279": {
        "rating": ["score", "comment"]
      }
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "delete_event_properties",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Thread tags

Tag Chat Thread

Specifics
Actiontag_chat_thread
Required scopeschats--all:rw chats--access:rw chats--my:rw
Web API equivalenttag_chat_thread
Push messagechat_thread_tagged
Request
ParameterRequiredData typeNotes
chat_idYesstringId of the chat you want to add a tag to.
thread_idYesstringId of the thread you want to add a tag to.
tagYesstringTag name
REQUEST
Copied!
{
  "action": "tag_chat_thread",
  "payload": {
    "chat_id": "PW94SJTGW6",
    "thread_id": "PWS6GIKAKH",
    "tag": "support"
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "tag_chat_thread",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Untag Chat Thread

Specifics
Actionuntag_chat_thread
Required scopeschats--all:rw chats--access:rw chats--my:rw
Web API equivalentuntag_chat_thread
Push messagechat_thread_untagged
Request
ParameterRequiredData typeNotes
chat_idYesstringId of the chat you want to remove a tag from.
thread_idYesstringId of the thread you want to remove a tag from.
tagYesstringTag name
REQUEST
Copied!
{
  "action": "untag_chat_thread",
  "payload": {
    "chat_id": "PW94SJTGW6",
    "thread_id": "PWS6GIKAKH",
    "tag": "support"
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "untag_chat_thread",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Customers

Get Customers

It returns the list of Customers.

Specifics
Actionget_customers
Required scopescustomers:ro
Web API equivalentget_customers
Push message-
Request

All parameters are optional.

ParameterData typeNotes
page_idstring
limitnumberDefault: 10, maximum: 100
order *stringDefault: desc
filtersobject
filters.country.<string_filter_type> **object
filters.email.<string_filter_type> **object
filters.name.<string_filter_type> **object
filters.customer_id.<string_filter_type> **object
filters.chats_count.<range_filter_type> ***object
filters.threads_count.<range_filter_type> ***object
filters.visits_count.<range_filter_type> ***object
filters.created_at.<date_range_filter_type>****object
filters.agent_last_event_created_at.<date_range_filter_type> ****object
filters.customer_last_event_created_at.<date_range_filter_type> ****object

*)

order can take the following values:

  • asc - oldest customers first
  • desc - newest customers first

**)

<string_filter_type> can take the following values :

  • values (string[] - an array of strings)
  • exclude_values (string[] - an array of strings)

There's only one value allowed for a single filter.

***)

<range_filter_type> can take the following values:

  • lte (int - less than or equal to given value)
  • lt (int - less than given value)
  • gte (int - greater than or equal to given value)
  • gt (int - greater than given value)
  • eq (int - equal to given value)

****)

<date_range_filter_type> can take the following values:

  • lte ( string - less than or equal to given value)
  • lt (string - less than given value)
  • gte (string - greater than or equal to given value)
  • gt (string - greater than given value)
  • eq (string - equal to given value)

Dates are represented in ISO 8601 format with microseconds resolution, e.g. 2017-10-12T15:19:21.010200+01:00 in specific timezone or 2017-10-12T14:19:21.010200Z in UTC.

Response
FieldData typeNotes
next_page_idstringIn relation to page_id specified in the request.
previous_page_idstringIn relation to page_id specified in the request.
REQUEST
Copied!
{
  "action": "get_customers",
  "payload": {}
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "get_customers",
  "type": "response",
  "success": true,
  "payload": {
    "customers": [
      // an array of "User > Customer" objects
    ],
    "total_customers": 2340,
    "next_page_id": "MTUxNzM5ODEzMTQ5Ng==", // optional
    "previous_page_id": "MTUxNzM5ODEzMTQ5Ng==" // optional
  }
}

Create Customer

Creates a new Customer user type.

Specifics
Actioncreate_customer
Required scopescustomers:rw
Web API equivalentcreate_customer
Push messagecustomer_created
Request
ParameterRequiredData typeNotes
nameNostring
emailNostring
avatarNostringURL of the Customer's avatar
fieldsNoobjectA map in "key": "value" format
REQUEST
Copied!
{
  "action": "create_customer",
  "payload": {}
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "create_customer",
  "type": "response",
  "success": true,
  "payload": {
     "customer_id": "b7eff798-f8df-4364-8059-649c35c9ed0c"
  }
}

Update Customer

Updates Customer's properties.

Specifics
Actionupdate_customer
Required scopescustomers:rw
Web API equivalentupdate_customer
Push messagecustomer_updated
Request
ParameterRequiredData typeNotes
customer_idYesstringUUID v4 format is required.
nameNostring
emailNostring
avatarNostringURL of the Customer's avatar
fieldsNoobjectA map in "key": "value" format

Apart from customer_id, which is a required parameter, you also need to include one of the optional parameters.

REQUEST
Copied!
{
  "action": "update_customer",
  "payload": {
    "customer_id": "646d53b8-ba76-48bf-7ef1-f6d61ec4ec44",
    "name": "John Doe"
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "update_customer",
  "type": "response",
  "success": true,
  "payload": {
    // "User > Customer" object
  }
}

Ban Customer

Bans the customer for a specific period of time. It immediately disconnects all active sessions of this customer and does not accept new ones during the ban lifespan.

Specifics
Actionban_customer
Required scopescustomers.ban:rw
Web API equivalentban_customer
Push messagecustomer_banned
Request
ParameterRequiredData type
customer_idYesstring
banYesobject
ban.daysYesnumber
REQUEST
Copied!
{
  "action": "ban_customer",
  "payload": {
    "customer_id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
    "ban": {
      "days": 3
    }
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "ban_customer",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Status

Login

It returns the initial state of the current Agent.

Specifics
Actionlogin
Required scopeschats--access:ro customers:ro multicast:ro agents--all:ro agents-bot--all:ro
Web API equivalent-
Push message-
Request
ParameterRequiredData typeNotes
tokenYesstringOAuth token from the Agent's account
timezoneNostring
reconnectNoboolReconnecting sets the status to the last known state instead of the default one.
push_notificationsNoobject
push_notifications.firebase_tokenNostringFirebase device token to allow connecting this instance with the existing push notification instance (to be seen as 1 instance).
push_notifications.platformYesstringOS platform; possible values:ios, android. Required only when push_notifications is included.
applicationNoobject
application.nameNostringApplication name
application.versionNostringApplication version
Response
FieldReq./Optional
accessoptional
propertiesoptional
REQUEST
Copied!
{
    "action": "login",
    "payload": {
        "token": "Bearer dal:test_1fgTbfXmgthj4cZSA"
        }
    }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "login",
  "type": "response",
  "success": true,
  "payload": {
    "license": {
      "id": "104130623",
      "plan": "enterprise",
      "expiration_timestamp": 1483433500,
      "creation_timestamp": 1482433500,
      "in_trial": true,
      "website_last_activity": "2018-01-05" // optional
    },
    "my_profile": {
      // "User > My profile" object
    },
    "chats_summary": [
      {
        "id": "PJ0MRSHTDG",
        "users": [
          // array of "User" objects
        ],
        "last_event_per_type": {
          // the last event of each type in chat
          "message": {
            "thread_id": "K600PKZON8",
            "thread_order": 343544565,
            "event": {
              // "restricted_access": true
              // or
              // Event > Message object
            }
          },
          "system_message": {
            "thread_id": "K600PKZON8",
            "thread_order": 343544565,
            "event": {
              // "restricted_access": true
              // or
              // Event > System Message object
            }
          }
          // ...
        },
        "last_thread_summary": {
          "id": "K600PKZON8",
          "timestamp": 1473433500,
          "user_ids": ["agent1@example.com"],
          "order": 12417249812721,
          "properties": {
            "routing": {
              "idle": {
                "value": false
              },
              "unassigned": {
                "value": false
              }
            }
            // ...
          }
        },
        "properties": {
          "routing": {
            "idle": {
              "value": false
            },
            "unassigned": {
              "value": false
            }
          }
          // ...
        },
        "access": {
          // "Access" object
        }
      }
    ]
  }
}

Set Away Status

Specifics
Actionset_away_status
Required scopesagents--my:rw
Web API equivalent-
Push message-
Request
ParameterRequiredType
awayYesbool
REQUEST
Copied!
{
  "action": "set_away_status",
  "payload": {
    "away": true
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "set_away_status",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Change Push Notifications

Change the firebase push notifications properties.

Specifics
Actionchange_push_notifications
Required scopes-
Web API equivalent-
Push message-
Request
ParameterRequiredData typeNotes
firebase_tokenYesstringFirebase device token
platformYesstringOS platform; possible values: ios, android
enabledYesboolEnable or disable push notifications for the requested token
REQUEST
Copied!
{
  "action": "change_push_notifications",
  "payload": {
    "firebase_token": "test_D9dada8ja1JADA11",
    "platform": "ios",
    "enabled": true
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "change_push_notifications",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Update Agent

Updates Agent's properties.

Specifics
Actionupdate_agent
Required scopesagents--my:rw agents--all:rw
Web API equivalentupdate_agent
Push messageagent_updated
Request
ParameterRequiredData typeNotes
agent_idNostringThe current Agent is used by default.
routing_statusNostringPossible values: accepting_chats, not_accepting_chats
REQUEST
Copied!
{
  "action": "update_agent",
  "payload": {
    "agent_id": "uagent1@example.com",
    "routing_status": "accepting_chats"
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "update_agent",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Logout

Logs the Agent out.

Specifics
Actionlogout
Required scopes-
Web API equivalent-
Push message-
REQUEST
Copied!
{
  "action": "logout",
  "payload": {}
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "logout",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Other

Mark Events as Seen

Specifics
Actionmark_events_as_seen
Required scopeschats--access:ro chats--all:ro
Web API equivalentmark_events_as_seen
Push messageevents_marked_as_seen
Request
ParameterRequiredData typeNotes
chat_idYesstring
seen_up_toYesstringRFC 3339 date-time format
REQUEST
Copied!
{
  "action": "mark_events_as_seen",
  "payload": {
    "chat_id": "PJ0MRSHTDG",
    "seen_up_to": "2017-10-12T15:19:21.010200Z"
  }
}
Response
Copied!
{
  "request_id": "<request_id>",
  "action": "mark_events_as_seen",
  "type": "response",
  "success": true,
  "payload": {}
}

Send Typing Indicator

Specifics
Actionsend_typing_indicator
Required scopeschats.conversation--all:rw chats.conversation--access:rw chats.conversation--my:rw
Web API equivalentsend_typing_indicator
Push message-
Request
ParameterRequiredData typeNotes
chat_idYesstringId of the chat you want to send the typing indicator to.
recipientsNostringall (default), agents
is_typingYesbool
REQUEST
Copied!
{
  "action": "send_typing_indicator",
  "payload": {
    "chat_id": "PJ0MRSHTDG",
    "is_typing": true
  }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "send_typing_indicator",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Multicast

This method serves for the chat-unrelated communication. Messages sent using multicast are not being saved.

For example, it could be used in an app that sends notifications to Agents or Customers, when a certain condition is met (e.g. an important Customer started the chat).

Specifics
Actionmulticast
Required scopesmulticast:rw
Web API equivalentmulticast
Push messageincoming_multicast
Request
ParameterRequiredData typeNotes
scopesYesobject*
contentYesanyA JSON message to be sent
typeNostringMulticast message type

*) scopes can take the following values:

  • agents:

    • all (bool - includes all agents)
    • ids ([]string - an array of agents' IDs)
    • groups ([]string - an array of groups' IDs)
  • customers:

    • ids ([]string - an array of customer's IDs)

At least one scopes type (agents.all, agents.ids, agents.groups, customers.ids) is required.

REQUEST
Copied!
{
    "action": "multicast",
    "payload": {
        "scopes": {
            "agents": {
                "all": true,
                "ids": [
                    "agent1@example.com",
                    "agent2@example.com"
                ],
                "groups": [
                    1,
                    2
                ]
            },
            "customers": {
                "ids": [
                    "b7eff798-f8df-4364-8059-649c35c9ed0c"
                ]
            }
        },
        "content": {
            "example": {
                "nested": "json"
                }
            }
        }
    }
}
Response
Copied!
{
  "request_id": "<request_id>", // optional
  "action": "multicast",
  "type": "response",
  "success": true,
  "payload": {
    // no response payload
  }
}

Pushes

Here's what you need to know about pushes:

  • They are generated primarily by RTM API actions, but also by Web API actions.
  • They notify you when specific events occur.
  • Can be delivered only in the websocket transport.
  • You don't need to register pushes to receive them.
  • Their equivalents in Web API are webhooks. Pushes and webhooks have similar payloads.
  • There are no retries for pushes. To determine if a user has seen an event, compare the event's created_at parameter with the user's events_seen_up_to field.
general push format
Copied!
{
  "request_id": "<request_id>", // optional, applies only to the requester
  "action": "<action>",
  "type": "push",
  "payload": {
    // optional payload
  }
}

Chats

incoming_chat_thread

Informs about a new thread coming in the chat. The push payload contains not only the new thread, but the whole chat data structure. If the chat was started with some initial events, the thread object contains them.

Sample push payload
Copied!
{
  "chat": {
    "id": "PJ0MRSHTDG",
    "users": [
      // array of "User" objects
    ],
    "properties": {
      "source": {
        "type": "facebook"
      }
      // ...
    },
    "thread": {
      // "Thread" object
    }
  }
}
Specifics
Actionincoming_chat_thread
Webhook equivalentincoming_chat_thread

thread_closed

Informs that a thread was closed.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "thread_id": "K600PKZON8",
  "user_id": "b7eff798-f8df-4364-8059-649c35c9ed0c" // optional
}
Specifics
Actionthread_closed
Webhook equivalentthread_closed
Push payload
FieldNotes
user_idMissing if a thread was closed by the router.

Chat access

access_granted

Informs that new, single access to a resource was granted. The existing access isn't overwritten.

Sample push payload
Copied!
{
  "resource": "chat",
  "id": "PJ0MRSHTDG",
  "access": {
    "group_ids": [1]
  }
}
Specifics
Actionaccess_granted
Webhook equivalentaccess_granted
Push payload
FieldNotes
resourceResource type
idResource id

access_revoked

Informs that access to a certain resource was revoked.

Sample push payload
Copied!
{
  "resource": "chat",
  "id": "PJ0MRSHTDG",
  "access": {
    "group_ids": [1]
  }
}
Specifics
Actionaccess_revoked
Webhook equivalentaccess_revoked
Push payload
FieldNotes
resourceResource type
idResource Id

access_set

Informs that new, single access to a resource was set. The existing access is overwritten.

Sample push payload
Copied!
{
  "resource": "chat",
  "id": "PJ0MRSHTDG",
  "access": {
    "group_ids": [1]
  }
}
Specifics
Actionaccess_set
Webhook equivalentaccess_set
Push payload
FieldNotes
resourceResource type
idResource Id

chat_transferred

Informs that a chat was transferred to a different group or to an Agent.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "requester_id": "cb531744-e6a4-4ded-b3eb-b3eb4ded4ded",
  "type": "agent",
  "ids": ["agent1@example.com"]
}
Specifics
Actionchat_transferred
Webhook equivalent-
Push payload
FieldNotes
typeagent or group
idsgroup or agent IDs array

Chat users

chat_user_added

Informs that a user (Customer or Agent) was added to a chat.

This push can be emitted with user.present set to false when a user writes to a chat without joining it. You can achieve that via the Send Event method.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "thread_id": "K600PKZON8",
  "user": {
    // "User > Customer" or "User > Agent" object
  },
  "user_type": "agent"
}
Specifics
Actionchat_user_added
Webhook equivalentchat_user_added
Push payload
FieldNotes
user_typePossible values: agent, customer
thread_idEmpty if a user was added to an inactive chat.

chat_user_removed

Informs that a user (Customer or Agent) was removed from a chat.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "thread_id": "K600PKZON8",
  "user_id": "agent1@example.com",
  "user_type": "agent"
}
Specifics
Actionchat_user_removed
Webhook equivalentchat_user_removed
Push payload
FieldNotes
user_typePossible values: agent, customer
thread_idEmpty if a user was removed from an inactive chat.

Events

incoming_event

Informs about an incoming event sent to a chat.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "thread_id": "K600PKZON8",
  "event": {
      "id": "Q20163UAHO_2",
      "created_at": "2019-12-05T07:27:08.820000Z",
      "recipients": "all",
      "type": "message",
      "properties": {
          "0805e283233042b37f460ed8fbf22160": {
              "string_property": {
                "value": "string value"
              }
          }
      },
      "text": "Hello",
      "author_id": "author@example.com"
  }
}
Specifics
Actionincoming_event
Webhook equivalentincoming_event

event_updated

Informs that an event was updated.

Sample push payload
Copied!
{
  "chat_id": "123-123-123-123",
  "thread_id": "E2WDHA8A",
  "event": {
    // "Event" object
  }
}
Specifics
Actionevent_updated
Webhook equivalentevent_updated

incoming_rich_message_postback

Informs about an incoming rich message postback. The push payload contains the info on the postback itself, as well as the chat it was sent in.

Sample push payload
Copied!
{
  "user_id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
  "chat_id": "PJ0MRSHTDG",
  "thread_id": "K600PKZON8",
  "event_id": "a0c22fdd-fb71-40b5-bfc6-a8a0bc3117f7",
  "postback": {
    "id": "action_yes",
    "toggled": true
  }
}
Specifics
Actionincoming_rich_message_postback
Webhook equivalentincoming_rich_message_postback

Properties

chat_properties_updated

Informs about those chat properties that were updated.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "properties": {
    "rating": {
      "score": {
        "value": 1
      },
      "comment": {
        "value": "Very good, veeeery good"
      }
    }
    // ...
  }
}
Specifics
Actionchat_properties_updated
Webhook equivalentchat_properties_updated
Push payload
FieldNotes
propertiesThis is not a full properties object. This push shows only the properties that have been recently updated.

chat_properties_deleted

Informs about those chat properties that were deleted.

Sample push payload
Copied!
{
    "chat_id": "PJ0MRSHTDG",
    "properties": {
        "rating": ["score", "comment"]
        },
        // ...
    }
}
Specifics
Actionchat_properties_deleted
Webhook equivalentchat_properties_deleted
Push payload
FieldNotes
propertiesThis is not a full properties object. This push shows only the properties that have been recently updated.

chat_thread_properties_updated

Informs about those chat thread properties that were updated.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "thread_id": "K600PKZON8",
  "properties": {
    "rating": {
      "value": {
        "value": 1
      },
      "comment": {
        "value": "Very good, veeeery good"
      }
    }
    // ...
  }
}
Specifics
Actionchat_thread_properties_updated
Webhook equivalentchat_thread_properties_updated
Push payload
FieldNotes
propertiesThis is not a full properties object. This push shows only the properties that have been recently updated.

chat_thread_properties_deleted

Informs about those chat thread properties that were deleted.

Sample push payload
Copied!
{
    "chat_id": "PJ0MRSHTDG",
    "thread_id": "K600PKZON8",
    "properties": {
        "rating": ["score", "comment"]
        },
        // ...
    }
}
Specifics
Actionchat_thread_properties_deleted
Webhook equivalentchat_thread_properties_deleted
Push payload
FieldNotes
propertiesThis is not a full properties object. This push shows only the properties that have been recently updated.

event_properties_updated

Informs about those event properties that were updated.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "thread_id": "K600PKZON8",
  "event_id": "2_E2WDHA8A",
  "properties": {
    "rating": {
      "comment": {
        "value": "goooood"
      }
    }
  }
}
Specifics
Actionevent_properties_updated
Webhook equivalentevent_properties_updated
Push payload
FieldNotes
propertiesThis is not a full properties object. This push shows only the properties that have been recently updated.

event_properties_deleted

Informs about those event properties that were deleted.

Sample push payload
Copied!
{
    "chat_id": "PJ0MRSHTDG",
    "thread_id": "K600PKZON8",
    "event_id": "2_E2WDHA8A",
    "properties": {
        "rating": ["score", "comment"]
        },
        // ...
    }
}
Specifics
Actionevent_properties_deleted
Webhook equivalentevent_properties_deleted
Push payload
FieldNotes
propertiesThis is not a full properties object. This push shows only the properties that have been recently updated.

Thread tags

chat_thread_tagged

Informs that a chat thread was tagged.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "thread_id": "K600PKZON8",
  "tag": "bug_report"
}
Specifics
Actionchat_thread_tagged
Webhook equivalentchat_thread_tagged

chat_thread_untagged

Informs that a chat thread was untagged.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "thread_id": "K600PKZON8",
  "tag": "bug_report"
}
Specifics
Actionchat_thread_untagged
Webhook equivalentchat_thread_untagged

Customers

customer_visit_started

Informs that a Customer entered the tracked website.

Sample push payload
Copied!
{
  "customer_id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
  "visit_id": 42,
  "started_at": "2017-10-12T15:19:21.010200Z",
  "ip": "<ip>",
  "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36",
  "geolocation": {
    "latitude": "55.0805",
    "longitude": "16.0211",
    "country": "Poland",
    "country_code": "PL",
    "region": "Dolnoslaskie",
    "city": "Wroclaw",
    "timezone": "Europe/Warsaw"
  }
}
Specifics
Actioncustomer_visit_started
Webhook equivalent-

customer_created

Informs that a new Customer registered.

Sample push payload
Copied!
{
  "customer": {
    // "User > Customer" object
    "id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
    "created_at": "2019-11-14T14:27:24.410018Z",
    "email": "customer1@example.com",
    "avatar": "https://example.com/avatars/1.jpg",
    "fields": {
        "some_key": "some_value"
    }
  }
}
Specifics
Actioncustomer_created
Webhook equivalentcustomer_created

customer_updated

Informs that Customer's data was updated.

Sample push payload
Copied!
{
  "customer": {
    "id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
    "name": "John Doe",
    "email": "john@doe.me",
    "avatar": "https://example.com/avatars/1.jpg",
    "type": "customer",
    "present": false,
    "banned": false,
    "fields": {
      "custom field name": "custom field value"
    }
  }
}
Specifics
Actioncustomer_updated
Webhook equivalent-

customer_page_updated

Informs that a Customer moved to another page of the website.

Sample push payload
Copied!
{
  "customer_id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
  "visit_id": 42,
  "opened_at": "2017-10-12T15:19:21.010200Z",
  "url": "https://www.livechat.com/",
  "title": "LiveChat - Homepage"
}
Specifics
Actioncustomer_page_updated
Webhook equivalent-

customer_banned

Informs that a Customer was banned for a specified number of days.

Sample push payload
Copied!
{
  "customer_id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
  "ban": {
    "days": 5
  }
}
Specifics
Actioncustomer_banned
Webhook equivalent-

customer_visit_ended

Informs that a Customer left the tracked website.

Sample push payload
Copied!
{
  "customer_id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
  "visit_id": 42,
  "ended_at": "2017-10-12T15:19:21.010200Z"
}
Specifics
Actioncustomer_visit_ended
Webhook equivalent-

Status

agent_updated

Informs that an Agent's status was updated.

Sample push payload
Copied!
{
  "agent_id": "agent1@example.com",
  "routing_status": "accepting_chats"
}
Specifics
Actionagent_updated
Webhook equivalent-

agent_disconnected

Informs that an Agent was disconnected. The payload contains the reason of Customer's disconnection.

Sample push payload
Copied!
{
  "reason": "misdirected_request",
  "data": {
    // optional
    "region": "fra"
  }
}
Specifics
Actionagent_disconnected
Webhook equivalent-
Possible reasons
TypeNotes
access_token_revokedAgent access token has been revoked.
access_token_expiredAccess token life time has elapsed.
license_expiredLicense has expired.
agent_deletedAgent account has been deleted.
agent_logged_out_remotelyAgent has been logged out remotely.
agent_disconnected_by_serverAgent has been disconnected by the server.
unsupported_versionConnecting to an unsupported version of the Agent API.
ping_timeoutNot receiving ping for some time from the Customer.
internal_errorInternal error
too_many_connectionsAgent reached the max. number of connections.
misdirected_request *Agent connected to the server in the wrong region.
product_version_changedProduct version has been changed.
license_not_foundLicense with the specified ID doesn't exist.

*) Also, misdirected_request returns the correct region value in the optional data object. With this piece of information, the client is able to figure out where it should be connected.

Other

incoming_typing_indicator

Informs that one of the chat users is currently typing a message. The message hasn't been sent yet. The push payload contains the typing indicator object.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "thread_id": "K600PKZON8",
  "typing_indicator": {
    "author_id": "d17cd570-11a9-45c0-45c0-1b020b7586dc",
    "recipients": "all",
    "timestamp": 1574245378,
    "is_typing": true
  }
}
Specifics
Actionincoming_typing_indicator
Webhook equivalent-

incoming_sneak_peek

Informs about the message a Customer is currently typing. The push payload contains the sneak peek object.

Sample push payload
Copied!
{
  "chat_id": "PJ0MRSHTDG",
  "thread_id": "K600PKZON8",
  "sneak_peek": {
    "author_id": "d17cd570-11a9-45c0-45c0-1b020b7586dc",
    "recipients": "all",
    "text": "Hello",
    "timestamp": 1574245378
  }
}
Specifics
Actionincoming_sneak_peek
Webhook equivalent-

events_marked_as_seen

Informs that a user has seen events up to a specific time.

Sample push payload
Copied!
{
  "user_id": "b7eff798-f8df-4364-8059-649c35c9ed0c",
  "chat_id": "PJ0MRSHTDG",
  "seen_up_to": "2017-10-12T15:19:21.010200Z"
}
Specifics
Actionevents_marked_as_seen
Webhook equivalentevents_marked_as_seen

incoming_multicast

Informs about messages sent via the multicast method or by the system.

Sample push payload
Copied!
{
  "author_id": "agent1@example.com",
  "content": {
    "example": {
      "nested": "json"
    }
  },
  "type": "type1"
}
Specifics
Actionincoming_multicast
Webhook equivalent-
Push payload
FieldRequiredNotes
author_idNoPresent only if the push was generated by the Multicast method and not sent from the server.
contentYes
typeNo

Errors

General error format
Copied!
{
  "error": {
    "type": "misdirected_request",
    "message": "Wrong region",
    "data": {
      // optional
      "region": "dal"
    }
  }
}

Possible errors

Error typeDefault messageDescription
authenticationAuthentication errorAn invalid or expired access token.
authorizationAuthorization errorUser is not allowed to perform the action.
internalInternal server error
license_expiredLicense expiredThe end of license trial or subcription.
pending_requests_limit_reachedRequests limit reachedThe limit of pending requests within one websocket connection has been reached. The limit is 10.
requester_already_offlineRequester offlineThe method is only allowed for the logged in Agents (via RTM API).
requester_awaiting_approvalRequester awaiting approvalA new Agent hasn't been approved by the license owner yet.
request_timeoutRequest timed outTimeout threshold is 15 seconds.
requester_suspendedRequester suspendedThe rights of a given Agent have been withdrawn by the license owner.
seats_limit_exceededSeats limit exceededDisplayed on the attempt of logging in. All seats within a given license are already taken.
too_many_requestsToo many requestsThe request's rate limit was exceeded. It'll be unblocked automatically after some time.
validationWrong format of request
wrong_product_versionWrong product versionLicense is not LiveChat 3 (probably still LiveChat 2).

Contact us

If you found a bug or a typo, you can let us know directly on GitHub. In case of any questions or feedback, don't hesitate to contact us at developers@livechat.com. We'll be happy to hear from you!