amazon-connect-chatjs
Version:
Provides chat support to AmazonConnect customers
1,287 lines (1,059 loc) • 121 kB
Markdown
# Amazon Connect ChatJS
[](https://www.npmjs.com/package/amazon-connect-chatjs)  [](https://opensource.org/licenses/Apache-2.0) 
A browser-based JavaScript library to build custom chat interfaces for [Amazon Connect](https://docs.aws.amazon.com/connect/latest/adminguide/what-is-amazon-connect.html). Includes TypeScript support, fully managed WebSocket connections, and simplified API calls with internal AWS SDK integration. The Amazon Connect Chat javascript library (ChatJS) gives you the power to customize your chat experience and build your own chat widget or agent chat UI.
This stand-alone library supports customer chat sessions by default. For agent chat sessions and **Custom Contact Control Panel (CCP)**, please integrate with the [Amazon Connect Streams](https://github.com/aws/amazon-connect-streams) library.
> 📌 **New to Amazon Connect?**
> First, explore the [Amazon Connect User Guide](https://docs.aws.amazon.com/connect/latest/userguide/) to understand its features and capabilities. We recommend trying out the [pre-built Omnichannel Hosted Widget](https://docs.aws.amazon.com/connect/latest/adminguide/add-chat-to-website.html) (Voice, Chat, Video) before customizing with this library. For step-by-step guidance, check out our ["Getting Started with Amazon Connect Chat Open Source"](https://github.com/amazon-connect/amazon-connect-chat-ui-examples/blob/master/.github/docs/AmazonConnectChatOpenSourceWalkthrough.md) guide

## Table of Contents
- [Announcements](#announcements)
- [Examples](#examples)
- [Getting Started](#getting-started)
- [Usage](#usage)
- [Customer Session](#customer-session)
- [Agent Session](#agent-session)
- [API Reference](#api)
- [Global Properties](#global-properties)
- [ChatSession Class](#chatsession-class)
- [`chatSession` Methods](#chatsession-methods)
- [`chatSession` Events](#chatsession-events)
- [Feature Documentation](#features)
- [Local Development 💻](#local-development)
- [Known Issues and Debugging 🐛](#known-issues-and-debugging)
- [Troubleshooting and Support](#troubleshooting-and-support)
## 📢 Announcements
- **2025-05-29**: Migrated baked-in dependency from AWS SDK v2 to AWS SDK v3: `src/client/aws-sdk-connectparticipant.js`
- **2024-04-02**: Connection Acknowledgement (ConnAck) has migrated from [SendEvent](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_SendEvent.html) API to the [CreateParticipant](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html) API. Please upgrade to `amazon-connect-chatjs@^1.4.0` by **Dec 31, 2024**
- **2023-03-30**: v1.5.0 - Added support for _React Native environments_
- **2023-12-23**: v1.3.0 - Added Message Receipts feature, enabled by default
- **2022-11-08**: v1.2.0 - Added Client Side Metrics (CSM) feature, enabled by default
- **2020-12-13**: Added support for TypeScript (requires `typescript@^3.0.1` or higher)
## Examples
- **HTML Examples**
- [Customer Chat UI](./examples/chatjs-customer.html)
- [Agent Chat UI with StreamsJS](./examples/chatjs-streamsjs-agent.html)
- **React Examples**
- [Customer Chat UI](https://github.com/amazon-connect/amazon-connect-chat-interface)
- **Mobile Examples**
- [React Native Customer Chat UI](https://github.com/amazon-connect/amazon-connect-chat-ui-examples/tree/master/mobileChatExamples/connectReactNativeChat)
- [Android Native Customer Chat UI](https://github.com/amazon-connect/amazon-connect-chat-ui-examples/tree/master/mobileChatExamples/androidChatExample)
- [iOS Native Customer Chat UI](https://github.com/amazon-connect/amazon-connect-chat-ui-examples/tree/master/mobileChatExamples/iOSChatExample)
## Getting Started
### Prerequisites
- AWS Account
- [Amazon Connect instance](https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-instances.html)
- Contact Flow ready to receive chat contacts (recommended: ["Sample inbound flow"](https://docs.aws.amazon.com/connect/latest/adminguide/sample-inbound-flow.html))
- Deploy a [startChatContactAPI](https://github.com/amazon-connect/amazon-connect-chat-ui-examples/tree/master/cloudformationTemplates/startChatContactAPI) CloudFormation stack
### Installation
```sh
npm install amazon-connect-chatjs
# or
yarn add amazon-connect-chatjs
# or
pnpm add amazon-connect-chatjs
```
### Importing ChatJS
This library supports ESModule (ES6) imports. This will make the `window.connect` variable available in the current context.
```js
import 'amazon-connect-chatjs';
```
### TypeScript Support
This package includes built-in TypeScript type definitions (requires `typescript@>=3.0.1`). No additional `@types` packages needed.
```typescript
import 'amazon-connect-chatjs'; // loads dist/index.d.ts
```
### Importing from CDN
```html
<!-- Using unpkg with semver range -->
<script src="https://unpkg.com/amazon-connect-chatjs@^3.0.0"></script>
<!-- Using unpkg with latest version -->
<script src="https://unpkg.com/amazon-connect-chatjs@latest"></script>
<!-- Using jsDelivr with specific version -->
<script src="https://cdn.jsdelivr.net/npm/amazon-connect-chatjs@3.0.6/dist/amazon-connect-chat.js"></script>
<!-- Using with CORS -->
<script crossorigin src="https://unpkg.com/amazon-connect-chatjs"></script>
```
### Using the AWS SDK and ChatJS
If your project also uses the AWS SDK, ensure you import ChatJS **before** the AWS SDK to prevent conflicts. This is because ChatJS includes its own bundled version of [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/) (in `src/client/aws-sdk-connectparticipant.js`).
```js
import 'amazon-connect-chatjs';
// Baked-in ChatJS dependency (AWS SDK v3)
// import { ConnectParticipantClient } from './client/aws-sdk-connectparticipant.js'; // v3.x.x
// Custom AWS SDK import, must be second
import { ConnectParticipantClient, StartAttachmentUploadCommand } from '@aws-sdk/client-connectparticipant'; // v3.x.x
// your code ...
```
### Configuration
Set the global configuration to use. This method should be called before `connect.ChatSession.create()`.
For all supported options, see [connect.ChatSession.create()](#connectchatsessionsetglobalconfig).
```js
connect.ChatSession.setGlobalConfig({
region: "<AWS-REGION>", // (optional), defaults to: "us-west-2"
loggerConfig: { // (optional)
advancedLogWriter: null,
customizedLogger: {
debug: (...msg) => console.log(...msg),
info: (...msg) => console.log(...msg),
warn: (...msg) => console.log(...msg),
error: (...msg) => console.log(...msg)
},
level: connect.ChatSession.LogLevel.INFO, // (optional), default 10 (DEBUG, INFO, WARN, ERROR, ADVANCED_LOG)
},
webSocketManagerConfig: { // (optional) for React Native environments
isNetworkOnline: () => bool, // default: `() => navigator.onLine` (will break in React Native)
},
features: { // (optional)
messageReceipts: {
shouldSendMessageReceipts: true, // enabled by default, set to false to disable Read/Delivered receipts
throttleTime: 5000 // default: 5000, customize time to wait before sending Read/Delivered receipts
}
},
// Pass in a user agent suffix used to configure the AWS SDK client in Amazon Connect ChatJS.
// This will be appended to the x-amz-user-agent custom header used in outgoing API requests
customUserAgentSuffix: "", // (optional)
});
```
## Usage
### Customer Session
Create and join a new customer chat session.
To initialize ChatJS, you'll need chat details (`{ ContactId, ParticipantId, ParticipantToken }`) returned from a [StartChatContact](https://docs.aws.amazon.com/connect/latest/APIReference/API_StartChatContact.html) API request.
We recommend deploying this [startChatContactAPI](https://github.com/amazon-connect/amazon-connect-chat-ui-examples/tree/master/cloudformationTemplates/startChatContactAPI) CloudFormation stack for your chat proxy backend.
```typescript
import "amazon-connect-chatjs"; // imports the "window.connect"
connect.ChatSession.setGlobalConfig({ region: "us-west-2" });
// Step 1: Get chat details from your backend
// Boilerplate endpoint: https://github.com/amazon-connect/amazon-connect-chat-ui-examples/tree/master/cloudformationTemplates/startChatContactAPI
const response = await fetch("<url-to-personal-chat-backend>", { method: "POST" });
const chatDetails = await response.json();
// Step 2: Connect to the chat session
const customerChatSession = connect.ChatSession.create({
chatDetails: {
contactId: chatDetails.ContactId,
participantId: chatDetails.ParticipantId,
participantToken: chatDetails.ParticipantToken,
},
options: { region: "us-west-2" }, // optional
type: "CUSTOMER",
disableCSM: true
});
await customerChatSession.connect();
// Step 3: Send messages and events
await customerChatSession.sendMessage({ contentType: "text/plain", message: "Hello World!" });
await customerChatSession.sendEvent({ contentType: "application/vnd.amazonaws.connect.event.typing" });
// Step 4: Handle incoming websocket events
customerChatSession.onMessage(event => { /* ... */ });
customerChatSession.onConnectionBroken(event => { /* ... */ });
customerChatSession.onEnded(event => { /* ... */ });
customerChatSession.onTyping(event => { /* ... */ });
customerChatSession.onConnectionEstablished(event => { /* ... */ });
// Step 5: End chat gracefully
await customerChatSession.disconnectParticipant();
```
<details>
<summary>📌 View: ChatJS Customer Session Diagaram</summary>

</details>
<details>
<summary>📌 View: Customer Chat Sequence Diagaram</summary>
```mermaid
sequenceDiagram
participant Client as Customer Chat UI<br/>[ChatJS Client]
participant Proxy as startChatContactAPI<br/>[Lambda]
participant Connect as Amazon Connect<br/>Backend
participant Instance as Connect Instance
participant Agent as Agent
Client->>Proxy: POST /start-chat
Note over Proxy: Returns:<br/>- ContactId<br/>- ParticipantId<br/>- ParticipantToken
Proxy-->>Client: Return chat credentials
Client->>Connect: customerChatSession.connect()
Connect->>Instance: Initiate chat
Instance->>Agent: Notify new chat
Connect-->>Client: Return connection details
Client->>Connect: subscribe to WebSocket connection
rect rgb(240, 240, 240)
Note over Client,Agent: Bi-directional WebSocket Communication
Client->>Connect: WebSocket events
Connect->>Instance: Internal routing
Instance->>Agent: Agent interface
Agent->>Instance: Agent responses
Instance->>Connect: Internal routing
Connect->>Client: WebSocket events
end
Client->>Connect: customerChatSession.disconnectParticipant()
```
</details>
<details>
<summary>📌 HTML Sample: ChatJS Customer Session</summary>
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!--
Alternative import method:
<script src="https://unpkg.com/amazon-connect-chatjs@3.0.3"></script>
-->
</head>
<body>
<div id="chat-container">
<!-- Chat UI elements would go here -->
</div>
<script type="module">
import "https://unpkg.com/amazon-connect-chatjs@3.0.3";
const REGION = "us-west-2";
window.onload = async function () {
// Configure ChatJS
connect.ChatSession.setGlobalConfig({ region: REGION });
// Step 1: Get chat details from your backend
const response = await fetch("<url-to-personal-chat-backend>", { method: "POST" });
const chatDetails = await response.json();
// Step 2: Connect to the chat session
const customerChatSession = connect.ChatSession.create({
chatDetails: {
contactId: chatDetails.ContactId,
participantId: chatDetails.ParticipantId,
participantToken: chatDetails.ParticipantToken,
},
options: { region: REGION }, // optional
type: "CUSTOMER",
disableCSM: true
});
await customerChatSession.connect();
// Step 3: Send messages and events
// These would typically be triggered by user actions
// await customerChatSession.sendMessage({ contentType: "text/plain", message: "Hello World!" });
// await customerChatSession.sendEvent({ contentType: "application/vnd.amazonaws.connect.event.typing" });
// Step 4: Handle incoming websocket events
customerChatSession.onMessage(event => { /* ... */ });
customerChatSession.onConnectionBroken(event => { /* ... */ });
customerChatSession.onEnded(event => { /* ... */ });
customerChatSession.onTyping(event => { /* ... */ });
customerChatSession.onConnectionEstablished(event => { /* ... */ });
// Step 5: End chat gracefully
// This would typically be triggered by a user action
// await customerChatSession.disconnectParticipant();
};
</script>
</body>
</html>
```
</details>
### Agent Session
For agent chat sessions and **Custom Custom Contact Control Panel (CCP)**, please integrate **ChatJS** with the [Amazon Connect Streams](https://github.com/aws/amazon-connect-streams) library.
StreamJS will provide the ChatJS `agentChatSession` via `agentConnection.getMediaController()`. This supports the same event listeners and methods as customer chat sessions, with the exception of `disconnectParticipant()`.
> **Note:** for **Custom CCP**, you must to allow-list your domain before using StreamsJS, including `http://localhost:PORT` for local testing. More [details here](https://github.com/amazon-connect/amazon-connect-streams?tab=readme-ov-file#allowlisting). Update your instance settings in the Amazon Connect AWS Console.
```html
<html>
<!-- OPTIONAL: hide the pre-built CCP UI
<style>#ccp-iframe-root iframe{display:none}</style>
-->
<body>
<div id="ccp-iframe-root"></div>
<script type="module">
import 'https://unpkg.com/amazon-connect-streams@2.18.3'; // StreamJS must be imported first
// To allow-list your domain, see: https://github.com/amazon-connect/amazon-connect-streams#allowlisting
const INSTANCE_URL = "https://<INSTANCE_NAME>.my.connect.aws/ccp-v2/";
const REGION = '<AWS-REGION>'; // "us-west-2"
// Step 1: Initialize CCP
// <div id="ccp-iframe-root" />
var containerElement = document.getElementById("ccp-iframe-root");
await connect.core.initCCP(containerElement, {
ccpUrl: INSTANCE_URL,
region: REGION,
loginPopup: true,
});
// Step 2: Handle incoming chat contacts
connect.contact((contact) => {
if (contact.getType() !== connect.ContactType.CHAT) return;
// Auto-accept the incoming chat contact
contact.accept();
contact.onAccepted(async () => {
const agentConnection = contact.getConnections().find(conn => conn.getType() === connect.ConnectionType.AGENT);
// Configure ChatJS (optional)
connect.ChatSession.setGlobalConfig({ /* ... */ });
// Step 3: Initialize ChatJS and subscribe to WebSocket connection
const agentChatSession = await agentConnection.getMediaController();
// Fetch the transcript
const awsSDKResponse = await agentChatSession.getTranscript({
sortOrder: "ASCENDING",
maxResults: 100, // default: 15
metadata: { foo: "bar" }, // optional
// scanDirection: "BACKWARD", (optional) default: BACKWARD
// nextToken?: nextToken - OPTIONAL, for pagination
});
const { InitialContactId, NextToken, Transcript } = awsSDKResponse.data;
// Set up event listeners
agentChatSession.onConnectionEstablished((event) => {
// Handle connection established
});
agentChatSession.onMessage((event) => {
const message = event.data?.Content;
// Handle incoming message
});
// Send messages
await agentChatSession.sendMessage({ contentType: "text/plain", message: "Hello World!" });
// NOTE: disconnectParticipant() is not available in agentChatSession
// To leave an agent chat session, run:
// contact.destroy()
});
});
</script>
</body>
</html>
```
<details>
<summary>📌 HTML Sample: Agent Custom CCP w/ ChatJS and StreamsJS</summary>
```html
<!-- chatjs-streamsjs-example.html -->
<!--
# Amazon Connect Custom Agent Chat UI
## Overview
Custom Agent Chat UI integrating ChatJS and StreamsJS for Amazon Connect Chat
- StreamsJS: https://github.com/amazon-connect/amazon-connect-streams
- ChatJS: https://github.com/amazon-connect/amazon-connect-chatjs
- AWS Documentation: https://docs.aws.amazon.com/connect/latest/adminguide/chat-with-connect-contacts.html
## Prerequisites
- Amazon Connect Instance
- Access to Agent Contact Control Panel (CCP): https://<instance-alias>.my.connect.aws/ccp-v2
- Requires: Security Profile = "CCP: Access CCP"
## Configuration Steps
1. Allowlisting
- Login to your AWS Account, then navigate to the Amazon Connect console.
- Click the instance name of the instance for which you would like to allowlist pages to load the settings page for your instance.
- Click the "Application integration" link on the left.
- Click "Add Origin", then enter a domain URL: http://localhost:8080
2. Configuration Updates
- Update the following values in the script:
* `INSTANCE_URL`: Your Amazon Connect instance URL
* `REGION`: Your AWS region
## Local Testing Instructions
1. Host the HTML file in a local browser
``
npx live-server --port=8080 chatjs-streamsjs-example.html
``
- Access URL: http://localhost:8080
2. Login Process
- Open Contact Control Panel (CCP)
- Login with your Agent username/password
3. Chat Interaction
- Keep CCP tab open
- In a second browser tab, launch Amazon Connect Test Chat Page: https://<instance-alias>.my.connect.aws/test-chat
- Open the Customer widget
- Back on CCP tab, wait for an incoming chat contact, click "Accept"
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Agent Chat UI [Amazon Connect]</title>
<style>
body {
display: flex;
}
#prebuilt-agent-ui-iframe,
#chat-ui-container {
width: 400px;
height: 800px;
}
#chat-ui-container {
font-family: Arial, sans-serif;
border: 1px solid #ddd;
padding: 15px;
border-radius: 5px;
margin: 20px auto;
}
#custom-agent-chat-transcript {
height: 300px;
overflow-y: auto;
background-color: #f8f8f8;
padding: 10px;
margin-top: 20px;
width: 100%;
box-sizing: border-box;
}
#custom-agent-chat-transcript::after {
content: "";
display: table;
clear: both;
}
.message {
margin: 5px 0;
padding: 8px;
border-radius: 5px;
max-width: 80%;
word-wrap: break-word;
clear: both;
}
.incoming-message {
background-color: #f0f0f0;
border: 1px solid #ddd;
float: left;
text-align: left;
}
.outgoing-message {
background-color: #0084ff;
color: white;
border: 1px solid #0073e6;
float: right;
text-align: right;
}
#message-input-container {
display: flex;
margin-top: 15px;
}
#messageInput {
flex-grow: 1;
margin-right: 5px;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
padding: 8px 15px;
border-radius: 4px;
cursor: pointer;
background-color: #0084ff;
color: white;
border: none;
}
button:disabled {
background-color: #ccc;
}
</style>
</head>
<body>
<div id="prebuilt-agent-ui-iframe"></div>
<div id="chat-ui-container">
<h3>Custom Agent Chat UI (ChatJS + StreamsJS)</h3>
<div id="custom-agent-chat-transcript"></div>
<div id="message-input-container" style="display: none">
<input type="text" id="messageInput" placeholder="Type your message..." disabled>
<button id="sendMessageButton" disabled>Send</button>
</div>
</div>
<script type="module">
// Option 1: import ChatJS and StreamJS directly from npm (order is important)
import "https://unpkg.com/amazon-connect-streams@2.18.1"; // imports `window.connect.*`
import "https://unpkg.com/amazon-connect-chatjs@3.0.5"; // also imports `window.connect.*`
// Option 2: Import bundle files
// import "amazon-connect-streams.js";
// import "amazon-connect-chat.js";
const INSTANCE_URL = "https://{INSTANCE-ALIAS}.my.connect.aws/ccp-v2?visual-refresh=true";
const REGION = 'us-west-2';
const MAX_TRANSCRIPT_MESSAGES = 15;
window.onload = async function () {
// DOM element references
const elements = {
prebuiltAgentUI: document.getElementById("prebuilt-agent-ui-iframe"),
transcript: document.getElementById("custom-agent-chat-transcript"),
messageInput: document.getElementById("messageInput"),
sendButton: document.getElementById("sendMessageButton"),
inputContainer: document.getElementById("message-input-container"),
};
// Initialize Connect CCP and set up handlers
await connect.core.initCCP(elements.prebuiltAgentUI, {
ccpUrl: INSTANCE_URL,
region: REGION,
loginPopup: true,
});
connect.ChatSession.setGlobalConfig({
loggerConfig: { useDefaultLogger: true },
region: REGION,
});
// Handle new contacts
connect.contact(contact => {
if (contact.getType() === connect.ContactType.CHAT) {
// Automatically accept chat
contact.accept();
}
contact.onAccepted(() => initializeChatContact(contact));
});
// Check for existing contacts
connect.agent(agent => {
agent.onRefresh(() => {
agent.getContacts().forEach(contact => {
const contactStatus = contact.getStatus().type;
const isActiveChat =
contact.getType() === connect.ContactType.CHAT &&
(contactStatus === connect.ContactStateType.CONNECTED ||
contactStatus === connect.ContactStateType.ACCEPTED);
if (isActiveChat) initializeChatContact(contact);
});
});
});
/**
* Initialize a chat contact and set up the UI
*/
async function initializeChatContact(contact) {
if (contact.getType() !== connect.ContactType.CHAT) return;
const agentConnection = contact.getConnections().find(
conn => conn.getType() === connect.ConnectionType.AGENT
);
let chatSession;
try {
chatSession = await agentConnection.getMediaController();
if (!chatSession) {
chatSession = connect.ChatSession.create({
chatDetails: agentConnection.getMediaInfo(),
options: { region: REGION },
type: connect.ChatSession.SessionTypes.AGENT,
websocketManager: connect.core.getWebSocketManager()
});
await chatSession.connect();
}
// To end an Agent Chat Session, equiv to customerChatSession.disconnectParticipant()
// await contact.destroy({
// success: () => console.log("Contact ended successfully"),
// failure: (err) => console.error("Failed to end contact:", err)
// });
setupChat(chatSession, elements);
} catch (error) {
console.error('Error getting chat session:', error);
}
}
/**
* Set up the chat UI and handlers
*/
function setupChat(chatSession, elements) {
if (!chatSession) return;
// Show and enable UI elements
elements.transcript.style.display = "block";
elements.transcript.style.visibility = "visible";
elements.inputContainer.style.display = "flex";
elements.messageInput.disabled = false;
elements.sendButton.disabled = false;
// Set up message sending
const sendMessage = async () => {
const message = elements.messageInput.value.trim();
if (message) {
try {
await chatSession.sendMessage({ contentType: "text/plain", message });
elements.messageInput.value = '';
} catch (error) {
console.error('Error sending message:', error);
}
}
};
elements.sendButton.addEventListener('click', sendMessage);
elements.messageInput.addEventListener('keypress', e => {
if (e.key === 'Enter') sendMessage();
});
// Set up chat session handlers
chatSession.onConnectionEstablished(() => {
// Load previous messages
chatSession.getTranscript({
scanDirection: "BACKWARD",
sortOrder: "ASCENDING",
maxResults: MAX_TRANSCRIPT_MESSAGES
}).then(response => {
if (response.data?.Transcript) {
response.data.Transcript.forEach(msg => renderMessage(msg, chatSession, elements));
}
}).catch(error => console.error("Error loading transcript:", error));
});
/**
* Subscribes an event handler that triggers whenever a message or an event (except for `application/vnd.amazonaws.connect.event.typing`) is created by any participant.
* @param {
chatDetails: Object,
data: {
AbsoluteTime: string,
Content?: string,
ContentType: string,
DisplayName?: string,
Id: string,
ParticipantId?: string,
ParticipantRole?: "AGENT" | "CUSTOMER" | "SYSTEM",
Type: "MESSAGE" | "EVENT" | "ATTACHMENT" | "CONNECTION_ACK",
ContactId?: string,
InitialContactId?: string
}
} event
*/
chatSession.onMessage(event => {
if (event.data) renderMessage(event.data, chatSession, elements);
});
/**
* Subscribes an event handler that triggers whenever a "application/vnd.amazonaws.connect.event.typing" event is created by any participant.
* @param {
AbsoluteTime?: string,
ContentType: "application/vnd.amazonaws.connect.event.typing",
Type?: string,
ParticipantId?: string,
DisplayName?: string,
ParticipantRole?: "AGENT" | "CUSTOMER" | "SYSTEM",
InitialContactId?: string
} event.data
*/
chatSession.onTyping((event) => {
// Handle typing indicator
renderMessage({
"AbsoluteTime": "2025-05-23T06:01:24.287Z",
"ContentType": "text/plain",
"Content": "...",
"Id": "e69634e9-2b31-4598-923e-5b2be62d436b",
"Type": "EVENT",
"ParticipantId": "5b370166-c0ee-4e23-ac1b-87ceffa611c4",
"DisplayName": "Customer",
"ParticipantRole": "CUSTOMER",
"InitialContactId": "3358be3e-368d-4cde-ae92-352f44c35440"
}, chatSession, elements);
})
/**
* Subscribes an event handler that triggers when a read message event is received from the customer or agent.
* @param {
AbsoluteTime?: string,
ContentType: "application/vnd.amazonaws.connect.event.message.read",
Type?: string,
ParticipantId?: string,
DisplayName?: string,
ParticipantRole?: "AGENT" | "CUSTOMER" | "SYSTEM",
InitialContactId?: string
} event.data
*/
chatSession.onReadReceipt((event) => {
// handle message receipt
})
/**
* Subscribes an event handler that triggers when a delivered message event is received from the customer or agent.
* @param {
AbsoluteTime?: string,
ContentType: "application/vnd.amazonaws.connect.event.message.delivered",
Type?: string,
ParticipantId?: string,
DisplayName?: string,
ParticipantRole?: "AGENT" | "CUSTOMER" | "SYSTEM",
InitialContactId?: string
} event.data
*/
chatSession.onDeliveredReceipt((event) => {
// handle message receipt
})
}
/**
* Render a message in the chat UI
*/
function renderMessage(message, chatSession, elements) {
if (message.ContentType === "text/plain" || message.ContentType === "text/markdown") {
const messageElement = document.createElement("div");
messageElement.className = "message";
const isFromAgent = message.ParticipantId === chatSession.getChatDetails().participantId;
messageElement.classList.add(isFromAgent ? "outgoing-message" : "incoming-message");
const displayName = message.DisplayName || (isFromAgent ? 'Agent' : 'Customer');
const content = document.createElement("div");
const messageContent = message.Content || message.content;
content.textContent = `${displayName}: ${messageContent}`;
messageElement.appendChild(content);
messageElement.id = `msg-${message.Id}`;
messageElement.title = new Date(message.AbsoluteTime).toLocaleTimeString();
elements.transcript.appendChild(messageElement);
elements.transcript.scrollTop = elements.transcript.scrollHeight;
}
}
};
</script>
</body>
</html>
```
</details>
<details>
<summary>📌 View: Agent Chat Sequence Diagaram</summary>
```mermaid
sequenceDiagram
participant ChatJS
participant ConnectAPI
participant WebSocket
participant AgentUI
participant StreamsJS
rect rgb(200, 230, 200)
Note over AgentUI, WebSocket: 1. Initialize + Subscribe
AgentUI ->> core.initCCP: core.initCCP
StreamsJS ->> AgentUI: initConnection success
AgentUI ->> StreamsJS: agent.onRefresh(handleAgentData)
AgentUI ->> StreamsJS: contact.onIncoming(handleContact)
end
rect rgb(230, 200, 230)
Note over AgentUI, WebSocket: 2. Incoming Chat Contact
ConnectAPI ->> StreamsJS: New CHAT contact
StreamsJS ->> AgentUI: contact.onIncoming event
Note right of AgentUI: Check contact.getType() === "chat"
end
rect rgb(200, 200, 230)
Note over AgentUI, WebSocket: 3. Accept Chat
AgentUI ->> StreamsJS: contact.accept()
StreamsJS ->> ConnectAPI: AcceptContact API
ConnectAPI -->> StreamsJS: Contact accepted
StreamsJS ->> AgentUI: contact.onAccepted event
Note over AgentUI: Initialize ChatJS
AgentUI ->> ChatJS: new ChatSession(chatDetails);
ChatJS ->> WebSocket: Connect with participantToken
WebSocket -->> ChatJS: Connection established
ChatJS ->> AgentUI: onConnectionEstablished event
end
rect rgb(240, 240, 240)
Note over AgentUI, WebSocket: 4. Chat Operations
WebSocket ->> ChatJS: Incoming message
ChatJS ->> AgentUI: onMessage callback
AgentUI ->> ChatJS: sendMessage("Hello")
ChatJS ->> WebSocket: Send via WebSocket
WebSocket -->> ChatJS: Message delivered
ChatJS -->> AgentUI: Success callback
AgentUI ->> ChatJS: getTranscript()
ChatJS ->> WebSocket: Request transcript
WebSocket -->> ChatJS: Return transcript
ChatJS -->> AgentUI: Transcript data
end
rect rgb(230, 230, 200)
Note over AgentUI, WebSocket: 5. End Chat
AgentUI ->> StreamsJS: contact.destroy()
StreamsJS ->> ConnectAPI: StopContact API
ConnectAPI -->> StreamsJS: Contact ended
StreamsJS ->> AgentUI: contact.onEnded event
WebSocket ->> ChatJS: Connection closed
ChatJS ->> AgentUI: onConnectionLost event
end
```
</details>
## API
- [Global Properties](#global-properties)
- [ChatSession Class](#chatsession-class)
- [`chatSession` Methods](#chatsession-methods)
- [`chatSession` Events](#chatsession-events)
### Global Properties
#### `window.connect.ChatSession`
```js
window.connect.ChatSession = {
create: ({ /* ... */ }) => {},
setGlobalConfig: (config) => {},
LogLevel: { /* ... */ },
Logger: { /* ... */ },
SessionTypes: { /* ... */ },
};
```
This is the main entry point to `amazon-connect-chatjs`.
All your interactions with the library start here.
#### `window.connect.ChatSession.LogLevel`
```js
connect.ChatSession.LogLevel = {
DEBUG,
INFO,
WARN,
ERROR,
ADVANCED_LOG,
};
```
Enumerates the logging levels.
<!--
#### `window.connect.csmService` [INTERNAL ONLY]
```js
const csmService = window.connect.csmService;
// Example usage
csmService.initializeCSM();
csmService.updateCsmConfig({ widgetType: "CustomChatWidget" })
csmService.addCountAndErrorMetric(metricName, "UI" || "API", error=false);
csmService.addCountMetric(method, "UI" || "API");
// ...
```
Used for publishing client-side-metrics (CSM) to track API metrics (count, latency, error count). Only applies to `CustomerChatSession`.
Used internally and safe to disable: `connect.ChatSession.create({ ..., disableCSM: true })`. ChatJS will functionally normally without CSM.
-->
### ChatSession Class
#### `connect.ChatSession.create()`
```js
const chatSession = await connect.ChatSession.create({
chatDetails: {
contactId: "...", // REQUIRED
participantId: "...", // REQUIRED
participantToken: "...", // REQUIRED
},
options: {
region: "us-east-1", // (optional) defaults to `region` set in `.setGlobalConfig()`
},
type: window.connect.ChatSession.SessionTypes.CUSTOMER, // REQUIRED - options: `CUSTOMER`, `AGENT`
disableCSM: true
});
```
`ContactId`, `ParticipantId`, and `ParticipantToken` must be generated on your backend and passed to the client. Make a request to [StartChatContact](https://docs.aws.amazon.com/connect/latest/APIReference/API_StartChatContact.html) API (see [#Usage](#usage-customer-chat)) for more details.
#### `connect.ChatSession.setGlobalConfig()`
```js
connect.ChatSession.setGlobalConfig({
// AWS Region (optional, defaults to "us-west-2")
region: "<AWS-REGION>",
// Logger Configuration (optional)
loggerConfig: {
advancedLogWriter: null,
customizedLogger: {
debug: (...msg) => console.log(...msg),
info: (...msg) => console.log(...msg),
warn: (...msg) => console.log(...msg),
error: (...msg) => console.log(...msg)
},
// Log levels: DEBUG, INFO, WARN, ERROR, ADVANCED_LOG
level: connect.ChatSession.LogLevel.INFO
},
// WebSocket Manager Config (optional, for React Native environments)
webSocketManagerConfig: {
// Default: `() => navigator.onLine` (will break in React Native)
isNetworkOnline: () => bool
},
// Features Configuration (optional)
features: {
messageReceipts: {
// Enable/disable Read/Delivered receipts (enabled by default)
shouldSendMessageReceipts: true,
// Time to wait before sending Read/Delivered receipts (default: 5000ms)
throttleTime: 5000
}
},
// User agent suffix for AWS SDK client (optional)
// Appended to x-amz-user-agent custom header in API requests
customUserAgentSuffix: ""
});
```
Set the global configuration to use. If this method is not called, the defaults of loggerConfig and region are used. This method should be called before `connect.ChatSession.create()`.
#### `connect.ChatSession.Logger`
```js
connect.ChatSession.Logger = {
debug(data) {}
info(data) {}
warn(data) {}
error(data) {}
advancedLog(data) {}
}
const logger = connect.ChatSession.Logger;
logger.info('foobar')
// INFO [2025-04-08T03:29:35.423Z] ChatJS: foobar
```
Exposes the internal ChatJS logger. Group your logs and use consistent format for easier debugging.
#### `connect.ChatSession.SessionTypes`
```js
connect.ChatSession.SessionTypes = {
AGENT,
CUSTOMER,
};
```
Enumerates the session types.
### `chatSession` Methods
Amazon Connect [Participant Service API](https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Participant_Service.html) wrappers
> ##### Metadata Usage
>
> - Most functions accept an optional `metadata` argument
> - `metadata` is not used by `amazon-connect-chatjs` internally
> - The `metadata` value is copied to the response object
> - Developers can use `metadata` for their own purposes
>
> Example:
> ```js
> chatSession.getTranscript({ metadata: "foo" })
> .then(({ data, metadata }) => {
> console.log(metadata); // "foo"
> })
> .catch(({ error, metadata}) => {
> console.error(metadata); // "foo"
> })
> ```
#### `chatSession.connect()`
```js
const { connectCalled, connectSuccess } = await chatSession.connect();
// connectCalled: indicates whether the Amazon Connect Participant Service was called
// connectSuccess: indicates whether the operation succeeded
```
Wraps the [CreateParticipantConnection](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-participant_CreateParticipantConnection.html) API.
**Note:** If the operation fails, the Promise will reject, but the error will have the same schema as a successful response.
#### `chatSession.sendMessage()`
```js
const awsSdkResponse = await chatSession.sendMessage({
contentType: "text/plain",
message: "Hello World!",
metadata: { foo: "bar" }, // optional
});
const { AbsoluteTime, Id } = awsSdkResponse.data;
const metadata = awsSdkResponse.metadata;
```
Wraps the [SendMessage](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_SendMessage.html) API.
The arguments are based on the [API request body](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_SendMessage.html#API_SendMessage_RequestSyntax) with the following differences:
- Fields are in `camelCase`.
- `ClientToken` cannot be specified.
The response `data` is the same as the [API response body](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_SendMessage.html#API_SendMessage_ResponseSyntax).
#### `chatSession.getTranscript()`
```js
const awsSDKResponse = await chatSession.getTranscript({
sortOrder: "ASCENDING",
maxResults: 100, // default: 15
metadata: { foo: "bar" }, // optional
// scanDirection: "BACKWARD", (optional) default: BACKWARD
// nextToken?: nextToken - OPTIONAL, for pagination
});
const { InitialContactId, NextToken, Transcript } = awsSDKResponse.data;
// see: https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-participant_GetTranscript.html#API_GetTranscript_ResponseSyntax
```
Fetch the chat transcript (uses ConnectionToken). Wraps the [GetTranscript](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_GetTranscript.html) API
> **Important note:** In order to specify `scanDirection` as `FORWARD`, you need to explicitly include a `startPosition`.
This is because the default `startPosition` is at the most recent update to the transcript, so requesting a transcript in the `FORWARD` direction from the default `startPosition` is equivalent to asking for a transcript containing only messages more recent than the present (you are asking for messages in the future!).
#### `chatSession.sendEvent()`
```js
const awsSdkResponse = await chatSession.sendEvent({
contentType: "application/vnd.amazonaws.connect.event.typing",
metadata: { foo: "bar" }, // optional
});
const { AbsoluteTime, Id } = awsSdkResponse.data;
```
Wraps the [SendEvent](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_SendEvent.html) API.
The arguments are based on the [API request body](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_SendEvent.html#API_SendEvent_RequestSyntax) with the following differences:
- Fields are in `camelCase`.
- `ClientToken` cannot be specified.
- `ContentType` allows the following values:
- `"application/vnd.amazonaws.connect.event.typing"`
- `"application/vnd.amazonaws.connect.event.connection.acknowledged"`
- `"application/vnd.amazonaws.connect.event.message.delivered"`
- `"application/vnd.amazonaws.connect.event.message.read"`
- `"application/vnd.amazonaws.connect.event.participant.invited"`
The response `data` is the same as the [API response body](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_SendEvent.html#API_SendEvent_ResponseSyntax).
#### `chatSession.sendAttachment()`
> Important: an administrator must [enable attachments](https://docs.aws.amazon.com/connect/latest/adminguide/enable-attachments.html) for your Connect instance
```js
await chatSession.sendAttachment({
attachment: attachment // type: File [HTML file object, see https://developer.mozilla.org/en-US/docs/Web/API/File]
metadata: { foo: "bar" }, // optional
});
// supported files: .csv, .doc, .docx, .jpeg, .jpg, .pdf, .png, .ppt, .pptx, .txt, .wav, .xls, .xlsx
// max size: 20MB
// source: https://docs.aws.amazon.com/connect/latest/adminguide/feature-limits.html#feature-limits-chat
// Example usage
var input = document.createElement('input');
input.type = 'file';
input.addEventListener('change', (e) => {
const file = e.target.files[0];
chatSession.sendAttachment({ attachment: file })
});
```
Wraps the [StartAttachmentUpload](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_StartAttachmentUpload.html) and [CompleteAttachmentUpload](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CompleteAttachmentUpload.html) API.
The arguments are based on the [StartAttachmentUpload](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_StartAttachmentUpload.html#API_StartAttachmentUpload_RequestSyntax) and [CompleteAttachmentUpload](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CompleteAttachmentUpload.html#API_CompleteAttachmentUpload_RequestSyntax) API request body with the following differences:
The response `data` is the same as the [StartAttachmentUpload](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_StartAttachmentUpload.html#API_StartAttachmentUpload_ResponseSyntax) and [CompleteAttachmentUpload](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CompleteAttachmentUpload.html#API_CompleteAttachmentUpload_ResponseSyntax) API response body.
`chatSession.sendAttachment()` invokes the StartAttachmentUpload API, uploads the Attachment to the S3 bucket using the pre-signed URL received in the StartAttachmentUpload API response and invokes the CompleteAttachmentUpload API to finish the Attachment upload process.
#### `chatSession.downloadAttachment()`
```js
chatSession.onMessage(event => {
// event.contentType === "application/vnd.amazonaws.connect.message.attachment"
if (event.data && event.data.Type === "ATTACHMENT") {
const attachmentItem = event.data.Attachments[0];
console.log(event.data);
// {
// "AbsoluteTime": "2025-05-24T21:42:55.867Z",
// "Attachments": [
// {
// "ContentType": "image/png",
// "AttachmentId": "asdfasdfasdfsadf",
// "AttachmentName": "Screenshot 2025-05-24 at 2.42.48 PM.png",
// "Status": "APPROVED"
// }
// ],
// "Id": "86a061a2-f99c-4691-a63e-47d145628a80",
// "Type": "ATTACHMENT",
// "ParticipantId": "4393212f-4481-4c7d-8184-5be9d811d7ce",
// "DisplayName": "Spencer",
// "ParticipantRole": "CUSTOMER",
// "InitialContactId": "f50e4cc0-b825-4da7-849a-27fa75f993de",
// "ContactId": "7d007f43-a0cc-4efb-abc9-628fc216e6d5"
// }
}
// ...
});
chatSession.downloadAttachment({
attachmentId: attachmentItem.AttachmentId
}).then((awsSDKResponse) => {
const attachmentBlob = awsSDKResponse; // Blob
/*
Attachment Object - This is the actual file that will be downloaded by either agent or end-customer.
{
lastModified: long
name: "string"
size: long
type: "string"
webkitRelativePath: "string"
}
*/
// Create a download link for the Blob
const downloadUrl = URL.createObjectURL(attachmentBlob);
const downloadLink = document.createElement('a');
downloadLink.href = downloadUrl;
downloadLink.download = attachmentItem.AttachmentName;
downloadLink.style.display = 'none';
document.body.appendChild(downloadLink);
downloadLink.click();
setTimeout(() => {
document.body.removeChild(downloadLink);
URL.revokeObjectURL(downloadUrl);
}, 100);
}).catch(error => {
console.error('Error downloading attachment:', error);
});
```
Wraps the [GetAttachment](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_GetAttachment.html) API.
The arguments are based on the [API request body](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_GetAttachment.html#API_GetAttachment_RequestSyntax) with the following differences:
The response `data` is the same as the [API response body](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_GetAttachment.html#API_GetAttachment_ResponseSyntax).
`chatSession.downloadAttachment()` invokes the GetAttachment using the AttachmentId as a request parameter and fetches the Attachment from the S3 bucket using the pre-signed URL received in the GetAttachment API response.
##### `chatSession.getAttachmentURL()`
```js
const s3Url = await chatSession.getAttachmentURL({
attachmentId: "string"
});
```
Wraps the [GetAttachment](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_GetAttachment.html) API.
The arguments are based on the [API request body](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_GetAttachment.html#API_GetAttachment_RequestSyntax) with the following differences:
- Fields are in `camelCase`.
The response is a url string.
`chatSession.getAttachmentURL()` invokes the GetAttachment using the AttachmentId as a request parameter and directly returns pre-signed URL received in the GetAttachment API response.
#### `chatSession.getChatDetails()`
```js
const chatDetails = await chatSession.getChatDetails();
const {
contactId,
initialContactId,
participantId,
participantToken,
} = chatDetails;
```
Gets the chat session details.
#### `chatSession.getAuthenticationUrl()`
```js
const awsSdkResponse = await chatSession.getAuthenticationUrl({
redirectUri: 'www.example.com',
sessionId: 'exampleId' // This comes from the `authentication.initiated` event
metadata: { foo: "bar" }, // optional
});
const authenticationUrl = getAuthenticationUrlResponse?.data?.AuthenticationUrl;
```
Wraps the [GetAuthenticationUrl](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-participant_GetAuthenticationUrl.html) API.
The arguments are based on the [API request body](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-participant_GetAuthenticationUrl.html#API_connect-participant_GetAuthenticationUrl_RequestSyntax)
The response `data` is the same as the [API response body](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-participant_GetAuthenticationUrl.html#API_connect-participant_GetAuthenticationUrl_ResponseSyntax).
**Important note:** The session id is only available from the authentication.initiated event which is only emitted when the authenticate customer contact flow block is used. The session id is a 1 time use code for this api. It can be re used in the cancelParticipantAuthentication api below
#### `chatSession.describeView()`
```js
const awsSDKResponse = await chatSession.describeView({
viewToken: "asdf...asdf", //REQUIRED
metadata: { foo: "bar" }, // optional
});
const { View } = awsSDKResponse.data;
```
Wraps the [DescribeView](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_DescribeView.html) API.
The arguments are based on the [API model](https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_DescribeView.html) with the following differences:
- All fields are in camelCase.
ChatJS automatically supplies the connectionToken via the session's internal data.
This api will only function after `chatSession.connect()` succeeds.
#### `chatSession.cancelParticipantAuthentication()`
```js
const awsSdkResponse = await chatSession.cancelParticipantAuthentication({
sessionId: 'exampleId' // This comes from the authentication.initiated event
metadata: { foo: "bar" }, // optional
});
```
Wraps the [CancelParticipantAuthentication](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-participant_CancelParticipantAuthentication.html) API.
The arguments are based on the [API request body](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-participant_CancelParticipantAuthentication.html#API_connect-participant_CancelParticipantAuthentication_RequestSyntax)
The response `data` is the same as the [API response body](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-participant_CancelParticipantAuthentication.html#API_connect-participant_CancelParticipantAuthentication_ResponseSyntax).
**Important note:** The session id is only available from the authentication.initiated event which is only emitted when the authenticate customer contact flow block is used. The session id is a 1 time use code.
#### `customerChatSession.disconnectParticipant()`
```js
await customerChatSession.disconnectParticipant();
// Chat session has ended, `customerChatSession.connect()` will not work anymore
```
Disconnect and end the chat. Applies only to `CustomerChatSession`.