Skip to content

Vonage Conversations

github-actions edited this page Apr 2, 2025 · 1 revision

Documentation


Documentation / Vonage Conversations

Vonage Conversations SDK for Node.js

GitHub Workflow Status (branch) Codecov Latest Release Contributor Covenant License

Vonage

This is the Vonage Conversations SDK for Node.js for use with Vonage APIs. To use it you will need a Vonage account. Sign up for free at vonage.com.

For full API documentation refer to the Vonage Conversations API specs.

If you are updating from V2 to V3, please check the migration guide found here

Installation

We recommend using this SDK as part of the overall @vonage/server-sdk package. Please see the main package for installation.

You can also use this SDK standalone if you only need access to just the Conversations API.

With NPM

npm install @vonage/conversations

With Yarn

yarn add @vonage/conversations

Usage

As part of the Vonage Server SDK

If you are using this SDK as part of the Vonage Server SDK, you can access it as the conversations property off of the client that you instantiate.

const { Vonage } = require('@vonage/server-sdk');
const { Auth } = require('@vonage/auth');

const vonage = new Vonage(new Auth({
  apiKey: API_KEY,
  apiSecret: API_SECRET,
  applicationId: APP_ID,
  privateKey: PRIVATE_KEY_PATH,
}), options);

vonage.conversations.getConversation(CONVERSATION_ID)

Standalone

The SDK can be used standalone from the main Vonage Server SDK for Node.js if you only need to use the Conversations API. All you need to do is require('@vonage/conversations'), and use the returned object to create your own client.

const { Auth } = require('@vonage/auth');
const { Conversations } = require('@vonage/conversations');

const conversationsClient = new Conversations(new Auth({
  apiKey: API_KEY,
  apiSecret: API_SECRET,
  applicationId: APP_ID,
  privateKey: PRIVATE_KEY_PATH,
}), options);

conversationsClient.getConversation(CONVERSATION_ID)

Promises

Most methods that interact with the Vonage API uses Promises. You can either resolve these yourself, or use await to wait for a response.

const resp = await conversationsClient.getConversation(CONVERSATION_ID)

conversationsClient.getConversation(CONVERSATION_ID)
  .then(resp => console.log(resp))
  .catch(err => console.error(err));

Testing

Run:

npm run test

Enumerations

ChannelType

Defined in: conversations/lib/enums/channelType.ts:4

Enum representing the type of communication channel.

Enumeration Members

Enumeration Member Value Description Defined in
APP "app" Represents an app channel. conversations/lib/enums/channelType.ts:18
PHONE "phone" Represents a phone channel. conversations/lib/enums/channelType.ts:8
SIP "sip" Represents a SIP channel. conversations/lib/enums/channelType.ts:13
VBC "vbc" Represents a VBC (Voice Business Cloud) channel. conversations/lib/enums/channelType.ts:28
WEBSOCKET "websocket" Represents a WebSocket channel. conversations/lib/enums/channelType.ts:23

ConversationState

Defined in: conversations/lib/enums/conversationState.ts:4

Conversation state

Enumeration Members

Enumeration Member Value Description Defined in
ACTIVE "ACTIVE" Conversation is still active conversations/lib/enums/conversationState.ts:8
DELETED "DELETED" Conversation is deleted conversations/lib/enums/conversationState.ts:18
INACTIVE "INACTIVE" Conversation is inactive conversations/lib/enums/conversationState.ts:13

EventMessageType

Defined in: conversations/lib/enums/eventMessageType.ts:1

Enumeration Members

Enumeration Member Value Defined in
AUDIO "audio" conversations/lib/enums/eventMessageType.ts:4
CUSTOM "custom" conversations/lib/enums/eventMessageType.ts:8
FILE "file" conversations/lib/enums/eventMessageType.ts:6
IMAGE "image" conversations/lib/enums/eventMessageType.ts:3
LOCATION "location" conversations/lib/enums/eventMessageType.ts:10
RANDOM "random" conversations/lib/enums/eventMessageType.ts:11
TEMPLATE "template" conversations/lib/enums/eventMessageType.ts:7
TEXT "text" conversations/lib/enums/eventMessageType.ts:2
VCARD "vcard" conversations/lib/enums/eventMessageType.ts:9
VIDEO "video" conversations/lib/enums/eventMessageType.ts:5

EventType

Defined in: conversations/lib/enums/eventsTypes.ts:4

Enum representing various types of events and their descriptions.

Enumeration Members

Enumeration Member Value Description Defined in
AUDIO_DTMF "audio:dtmf" Audio: Play DTMF audio conversations/lib/enums/eventsTypes.ts:28
AUDIO_EAR_MUFF_OFF "audio:earmuff:off" Audio: Earmuff audio conversations/lib/enums/eventsTypes.ts:58
AUDIO_EAR_MUFF_ON "audio:earmuff:on" Audio: Earmuff audio conversations/lib/enums/eventsTypes.ts:53
AUDIO_MUTE_OFF "audio:mute:off" Audio: Unmute audio conversations/lib/enums/eventsTypes.ts:48
AUDIO_MUTE_ON "audio:mute:on" Audio: Mute audio conversations/lib/enums/eventsTypes.ts:43
AUDIO_PLAY "audio:play" Audio: Play audio conversations/lib/enums/eventsTypes.ts:8
AUDIO_PLAY_STOP "audio:play:stop" Audio: Stop currently playing audio conversations/lib/enums/eventsTypes.ts:13
AUDIO_RECORD "audio:record" Audio: Record the audio in the conversation conversations/lib/enums/eventsTypes.ts:33
AUDIO_RECORD_STOP "audio:record:stop" Audio: Stop current recording of audio conversations/lib/enums/eventsTypes.ts:38
AUDIO_SAY "audio:say" Audio: Use TTS to speak the given text conversations/lib/enums/eventsTypes.ts:18
AUDIO_SAY_STOP "audio:say:stop" Audio: Stop currently playing TTS conversations/lib/enums/eventsTypes.ts:23
AUDIO_SPEAKING_OFF "audio:speaking:off" Audio: Speaking on conversations/lib/enums/eventsTypes.ts:68
AUDIO_SPEAKING_ON "audio:speaking:on" Audio: Speaking on conversations/lib/enums/eventsTypes.ts:63
CUSTOM "custom" Custom: Custom event conversations/lib/enums/eventsTypes.ts:73
EPHEMERAL "ephemeral" Ephemeral: Ephemeral conversations/lib/enums/eventsTypes.ts:78
MESSAGE "message" Message: Message (Text, Image, Audio, Video, File, Template, Custom, VCard, Location, Random) conversations/lib/enums/eventsTypes.ts:83
MESSAGE_DELIVERED "message:delivered" Message: Message delivered conversations/lib/enums/eventsTypes.ts:108
MESSAGE_REJECTED "message:rejected" Message: Message rejected conversations/lib/enums/eventsTypes.ts:93
MESSAGE_SEEN "message:seen" Message: Message seen conversations/lib/enums/eventsTypes.ts:103
MESSAGE_SUBMITTED "message:submitted" Message: Message submitted conversations/lib/enums/eventsTypes.ts:88
MESSAGE_UNDELIVERABLE "message:undeliverable" Message: Message undeliverable conversations/lib/enums/eventsTypes.ts:98

LegStatus

Defined in: conversations/lib/enums/legStatus.ts:4

The status of a leg

Enumeration Members

Enumeration Member Value Description Defined in
ANSWERED "answered" The leg is answered conversations/lib/enums/legStatus.ts:18
RINGING "ringing" The leg is ringing conversations/lib/enums/legStatus.ts:13
STARTED "started" The leg is started conversations/lib/enums/legStatus.ts:8

MemberState

Defined in: conversations/lib/enums/memberState.ts:4

Enum representing the state of a member.

Enumeration Members

Enumeration Member Value Description Defined in
INVITED "INVITED" The member has been invited to join the conversation. conversations/lib/enums/memberState.ts:8
JOINED "JOINED" The member has joined the conversation. conversations/lib/enums/memberState.ts:13
LEFT "LEFT" The member has left the conversation. conversations/lib/enums/memberState.ts:18
UNKNOWN "UNKNOWN" The state of the member is unknown or undefined. conversations/lib/enums/memberState.ts:23

ReasonCode

Defined in: conversations/lib/enums/reasonMessages.ts:4

Enum representing various reasons

Enumeration Members

Enumeration Member Value Description Defined in
ADDRESS_INCOMPLETE "address_incomplete" Address incomplete. conversations/lib/enums/reasonMessages.ts:83
BAD_EXTENSION "bad_extension" Bad extension. conversations/lib/enums/reasonMessages.ts:48
BAD_GATEWAY "bad_gateway" Bad gateway. conversations/lib/enums/reasonMessages.ts:78
BANNED_CALL_ENDED "banned_call_ended" Call ended due to being banned. conversations/lib/enums/reasonMessages.ts:118
BUSY "busy" The recipient is currently busy. conversations/lib/enums/reasonMessages.ts:13
BUSY_HERE "busy_here" Recipient is busy here. conversations/lib/enums/reasonMessages.ts:53
CANCELLED "cancelled" The request was cancelled. conversations/lib/enums/reasonMessages.ts:23
FAILED "failed" General failure. conversations/lib/enums/reasonMessages.ts:8
FLOW_FAILED "flow_failed" Flow execution failed. conversations/lib/enums/reasonMessages.ts:123
FORBIDDEN "forbidden" Forbidden access. conversations/lib/enums/reasonMessages.ts:68
GONE "gone" Resource has gone away. conversations/lib/enums/reasonMessages.ts:73
NOT_FOUND "not_found" Resource not found. conversations/lib/enums/reasonMessages.ts:38
NOT_IMPLEMENTED "not_implemented" Not implemented. conversations/lib/enums/reasonMessages.ts:93
OK "ok" Operation was successful. conversations/lib/enums/reasonMessages.ts:33
PAYMENT_REQUIRED "payment_required" Payment is required. conversations/lib/enums/reasonMessages.ts:113
REJECTED "rejected" The request was rejected. conversations/lib/enums/reasonMessages.ts:28
REQUEST_TERMINATED "request_terminated" Request terminated. conversations/lib/enums/reasonMessages.ts:43
REQUEST_TIMEOUT "request_timeout" Request timeout. conversations/lib/enums/reasonMessages.ts:58
SERVER_INTERNAL_ERROR "server_internal_error" Internal server error. conversations/lib/enums/reasonMessages.ts:88
SERVER_TIMEOUT "server_timeout" Server timeout. conversations/lib/enums/reasonMessages.ts:98
SERVICE_UNAVAILABLE "service_unavailable" Service is unavailable. conversations/lib/enums/reasonMessages.ts:108
TEMPORARILY_UNAVAILABLE "temporarily_unavailable" Temporarily unavailable. conversations/lib/enums/reasonMessages.ts:63
TIMEOUT "timeout" Operation timed out. conversations/lib/enums/reasonMessages.ts:18
VERSION_NOT_SUPPORTED "version_not_supported" Version not supported. conversations/lib/enums/reasonMessages.ts:103

Classes

Conversations

Defined in: conversations/lib/conversations.ts:173

A client for talking to the Vonage Conversation API.

Examples

Create a standalone Conversation client

import { Conversations } from '@vonage/conversation';

const conversationClient = new Conversations({
  applicationId: VONAGE_APPLICATION_ID,
  privateKey: VONAGE_APPLICATION_PRIVATE_KEY_PATH,
});

Create an Conversation client from the Vonage client

import { Vonage } from '@vonage/server-client';

const vonage = new Vonage({
  applicationId: VONAGE_APPLICATION_ID,
  privateKey: VONAGE_APPLICATION_PRIVATE_KEY_PATH,
});

const conversationClient = vonage.conversations

Extends

Constructors

Constructor
new Conversations(credentials, options?): Conversations;

Defined in: server-client/dist/lib/client.d.ts:35

Creates a new instance of the Client.

Parameters
credentials

The authentication credentials or an authentication instance.

AuthInterface | AuthParams

options?

ConfigParams

Optional configuration settings for the client.

Returns

Conversations

Inherited from

Client.constructor

Properties

auth
protected auth: AuthInterface;

Defined in: server-client/dist/lib/client.d.ts:24

The authentication instance responsible for generating authentication headers and query parameters.

Inherited from

Client.auth

authType
authType: AuthenticationType = AuthenticationType.JWT;

Defined in: conversations/lib/conversations.ts:174

The type of authentication used for the client's requests.

Overrides

Client.authType

config
protected config: ConfigParams;

Defined in: server-client/dist/lib/client.d.ts:28

Configuration settings for the client, including default hosts for various services and other request settings.

Inherited from

Client.config

transformers
static transformers: object;

Defined in: server-client/dist/lib/client.d.ts:11

Static property containing utility transformers.

camelCaseObjectKeys
camelCaseObjectKeys: PartialTransformFunction;
kebabCaseObjectKeys
kebabCaseObjectKeys: PartialTransformFunction;
omit()
omit: (keys, obj) => TransformedObject;
Parameters
keys

string[]

obj

ObjectToTransform

Returns

TransformedObject

snakeCaseObjectKeys
snakeCaseObjectKeys: PartialTransformFunction;
Inherited from

Client.transformers

Methods

addAuthenticationToRequest()
addAuthenticationToRequest(request): Promise<VetchOptions>;

Defined in: server-client/dist/lib/client.d.ts:43

Adds the appropriate authentication headers or parameters to the request based on the authentication type.

Parameters
request

VetchOptions

The request options to which authentication needs to be added.

Returns

Promise<VetchOptions>

  • The request options with the added authentication.
Inherited from

Client.addAuthenticationToRequest

addBasicAuthToRequest()
protected addBasicAuthToRequest(request): Promise<VetchOptions>;

Defined in: server-client/dist/lib/client.d.ts:71

Adds basic authentication headers to the request.

Parameters
request

VetchOptions

The request options to which authentication needs to be added.

Returns

Promise<VetchOptions>

  • The request options with the added authentication.
Inherited from

Client.addBasicAuthToRequest

addJWTToRequest()
protected addJWTToRequest(request): Promise<VetchOptions>;

Defined in: server-client/dist/lib/client.d.ts:64

Adds a JWT to the request.

Parameters
request

VetchOptions

The request options to which authentication needs to be added.

Returns

Promise<VetchOptions>

  • The request options with the added authentication.
Inherited from

Client.addJWTToRequest

addQueryKeySecretToRequest()
protected addQueryKeySecretToRequest(request): Promise<VetchOptions>;

Defined in: server-client/dist/lib/client.d.ts:57

Adds API key and secret to the request.

Parameters
request

VetchOptions

The request options to which authentication needs to be added.

Returns

Promise<VetchOptions>

  • The request options with the added authentication.
Inherited from

Client.addQueryKeySecretToRequest

addQueryKeySecretToRequestBody()
protected addQueryKeySecretToRequestBody(request): Promise<VetchOptions>;

Defined in: server-client/dist/lib/client.d.ts:50

Adds API key and secret to the request body.

Parameters
request

VetchOptions

The request options to which authentication needs to be added.

Returns

Promise<VetchOptions>

  • The request options with the added authentication.
Inherited from

Client.addQueryKeySecretToRequestBody

createConversation()
createConversation(conversation): Promise<Conversation>;

Defined in: conversations/lib/conversations.ts:273

Creates a new conversation with the provided details.

Parameters
conversation

Conversation

The conversation details to be created.

Returns

Promise<Conversation>

  • A promise resolving to the created conversation.
See

API Specification https://developer.vonage.com/en/api/conversation#createConversation

Example

Create a new conversation

const conversation = await conversationClient.createConversation({
  name: 'My Conversation',
});

console.log(conversation.id);
createEvent()
createEvent(conversationId, event): Promise<Event>;

Defined in: conversations/lib/conversations.ts:806

Creates a new event with the provided details.

Parameters
conversationId

string

The conversation id to create the event in.

event

Event

The event details to be created.

Returns

Promise<Event>

  • A promise resolving to the created event.
See

API Specification https://developer.vonage.com/en/api/event#createEvent

Example

Create a new event

const event = await eventClient.createEvent({
  name: 'My Event',
});

console.log(event.id);
createMember()
createMember(conversationId, member): Promise<Member>;

Defined in: conversations/lib/conversations.ts:577

Creates a new member with the provided details.

Parameters
conversationId

string

The conversation id to create the member in.

member

Member

The member details to be created.

Returns

Promise<Member>

  • A promise resolving to the created member.
See

API Specification https://developer.vonage.com/en/api/conversation#createMember

Example

Create a new member

const member = await memberClient.createMember(
  CONVERSATION_ID,
  {
    name: 'My Member',
  },
);

console.log(member.id);
deleteConversation()
deleteConversation(conversationId): Promise<void>;

Defined in: conversations/lib/conversations.ts:354

Deletes an conversation by its unique identifier.

Parameters
conversationId

string

The unique identifier of the conversation to delete.

Returns

Promise<void>

  • A promise indicating the successful deletion of the conversation.
See

API Specification https://developer.vonage.com/en/api/conversation#deleteConversation

Example

Delete an conversation

await conversationClient.deleteConversation(conversation_ID);
deleteEvent()
deleteEvent(conversationId, eventId): Promise<void>;

Defined in: conversations/lib/conversations.ts:839

Deletes an event by its unique identifier.

Parameters
conversationId

string

The conversation id to delete the event from.

eventId

string

The unique identifier of the conversation to delete.

Returns

Promise<void>

  • A promise indicating the successful deletion of the event.
See

API Specification https://developer.vonage.com/en/api/event#deleteEvent

Example

Delete an event

await eventClient.deleteEvent(conversation_ID);
getConfig()
getConfig(): ConfigParams;

Defined in: server-client/dist/lib/client.d.ts:36

Returns

ConfigParams

Inherited from

Client.getConfig

getConversation()
getConversation(conversationId): Promise<Conversation>;

Defined in: conversations/lib/conversations.ts:300

Retrieves an conversation by its unique identifier.

Parameters
conversationId

string

The unique identifier of the conversation to retrieve.

Returns

Promise<Conversation>

  • A promise resolving to the retrieved conversation.
See

API Specification https://developer.vonage.com/en/api/conversation#getConversation

Example

Retrieve an conversation

const conversation = await conversationClient.getConversation(conversation_ID);
console.log(conversation.name);
getConversationPage()
getConversationPage(filter): Promise<ConversationPage>;

Defined in: conversations/lib/conversations.ts:230

Retrieves a page of conversations based on filter parameters.

Parameters
filter

ListConversationsParameters

The filter parameters for pagination.

Returns

Promise<ConversationPage>

  • A promise resolving to a page of conversations.
See

API Specification https://developer.vonage.com/en/api/conversation#listConversation

Example

Get a single page of conversations

const conversations = await conversationClient.getConversationPage({
  page: 1,
  size: 10
});

conversations.conversations.forEach(conversation => {
  console.log(conversation.name);
});
getEvent()
getEvent(conversationId, eventId): Promise<Event>;

Defined in: conversations/lib/conversations.ts:775

Retrieves an event by its unique identifier.

Parameters
conversationId

string

The conversation id to retrieve the event from.

eventId

string

The unique identifier of the event to retrieve.

Returns

Promise<Event>

  • A promise resolving to the retrieved event.
See

API Specification https://developer.vonage.com/en/api/conversation#getEvent

Example

Retrieve an event

const event = await eventClient.getEvent(CONVERSATION_ID, event_ID);
console.log(event.name);
getEventPage()
getEventPage(conversationId, filter): Promise<EventPage>;

Defined in: conversations/lib/conversations.ts:737

Retrieves a page of events based on filter parameters.

Parameters
conversationId

string

The conversation id to retrieve events from.

filter

ListEventParameters

The filter parameters for pagination.

Returns

Promise<EventPage>

  • A promise resolving to a page of events.
See

API Specification https://developer.vonage.com/en/api/event#listEvent

Example

Get a single page of events

const events = await eventClient.getEventPage({
  page: 1,
  size: 10
});

events.events.forEach(event => {
  console.log(event.name);
});
getMe()
getMe(conversationId): Promise<Member>;

Defined in: conversations/lib/conversations.ts:633

This retrieves the member associated with the sub claim on the JWT

Parameters
conversationId

string

The conversation id to retrieve the member from.

Returns

Promise<Member>

  • A promise resolving to the retrieved member.
See

API Specification https://developer.vonage.com/en/api/conversation#getMe

Example

Retrieve an member

const member = await memberClient.getMe(CONVERSATION_ID);
console.log(member.name);
getMember()
getMember(conversationId, memberId): Promise<Member>;

Defined in: conversations/lib/conversations.ts:606

Retrieves an member by its unique identifier.

Parameters
conversationId

string

The conversation id to retrieve the member from.

memberId

string

The unique identifier of the member to retrieve.

Returns

Promise<Member>

  • A promise resolving to the retrieved member.
See

API Specification https://developer.vonage.com/en/api/conversation#getMember

Example

Retrieve an member

const member = await memberClient.getMember(CONVERSATION_ID, MEMBER_ID);
console.log(member.name);
getMemberPage()
getMemberPage(conversationId, filter): Promise<MemberPage>;

Defined in: conversations/lib/conversations.ts:536

Retrieves a page of members in a conversation based on filter parameters.

Parameters
conversationId

string

The conversation id to retrieve members from.

filter

ListMemberParameters = {}

The filter parameters for pagination.

Returns

Promise<MemberPage>

  • A promise resolving to a page of members.
See

API Specification https://developer.vonage.com/en/api/conversation#listMember

Example

Get a single page of members

const members = await memberClient.getMemberPage(
  CONVERSATION_ID,
  {
    page: 1,
    size: 10
  }
);

members.members.forEach(member => {
  console.log(member.name);
});
getUserSessionsPage()
getUserSessionsPage(userId, filter): Promise<SessionPage>;

Defined in: conversations/lib/conversations.ts:457

Retrieves a page of sessions based on filter parameters.

Parameters
userId

string

The user id to retrieve sessions from.

filter

ListSessionParameters

The filter parameters for pagination.

Returns

Promise<SessionPage>

  • A promise resolving to a page of sessions.
See

API Specification https://developer.vonage.com/en/api/session#listSession

Example

Get a single page of sessions

const sessions = await conversationClient.getUserSessionPage(
  USER_ID,
  {
    page: 1,
    size: 10
  }
);

sessions.sessions.forEach(session => {
  console.log(session.id);
});
listAllConversations()
listAllConversations(params?): AsyncGenerator<Conversation, void & Conversation, undefined>;

Defined in: conversations/lib/conversations.ts:192

Retrieves all conversations, iterating over paginated results.

Parameters
params?

ListConversationsParameters = {}

Optional filter parameters.

Returns

AsyncGenerator<Conversation, void & Conversation, undefined>

  • An asynchronous generator.
Yields
  • Yields conversation items.
Example

List conversations with pagination using an iterator

for await (const conversation of conversationClient.listAllConversations()) {
  console.log(conversation.name);
}
listAllEvents()
listAllEvents(conversationId, params?): AsyncGenerator<Event, void & Event, undefined>;

Defined in: conversations/lib/conversations.ts:697

Retrieves all events, iterating over paginated results.

Parameters
conversationId

string

The conversation id to retrieve events from.

params?

ListEventParameters = {}

Optional filter parameters.

Returns

AsyncGenerator<Event, void & Event, undefined>

  • An asynchronous generator.
Yields
  • Yields event items.
Example

List events with pagination using an iterator

for await (const event of eventClient.listAllEvents()) {
  console.log(event.name);
}
listAllMembers()
listAllMembers(conversationId, params?): AsyncGenerator<Member, void & Member, undefined>;

Defined in: conversations/lib/conversations.ts:493

Retrieves all members, iterating over paginated results.

Parameters
conversationId

string

The conversation id to retrieve members from.

params?

ListMemberParameters = {}

Optional filter parameters.

Returns

AsyncGenerator<Member, void & Member, undefined>

  • An asynchronous generator.
Yields
  • Yields member items.
Example

List members with pagination using an iterator

for await (const member of memberClient.listAllMembers(CONVERSATION_ID)) {
  console.log(member.name);
}
listAllUserConversations()
listAllUserConversations(userId, params?): AsyncGenerator<Conversation, void & Conversation, undefined>;

Defined in: conversations/lib/conversations.ts:377

Retrieves all conversations, for a user

Parameters
userId

string

The user id to retrieve conversations from.

params?

ListConversationsParameters = {}

Optional filter parameters.

Returns

AsyncGenerator<Conversation, void & Conversation, undefined>

  • An asynchronous generator.
Yields
  • Yields conversation items.
Example

List conversations with pagination using an iterator

for await (const conversation of conversationClient.listAllUserConversations(USER_ID)) {
  console.log(conversation.name);
}
listAllUserSessions()
listAllUserSessions(userId, params?): AsyncGenerator<Session, void & Session, undefined>;

Defined in: conversations/lib/conversations.ts:414

Retrieves all session, for a user

Parameters
userId

string

The user id to retrieve sessions from.

params?

ListSessionParameters = {}

Optional filter parameters.

Returns

AsyncGenerator<Session, void & Session, undefined>

  • An asynchronous generator.
Yields
  • Yields session items.
Example

List sessions with pagination using an iterator

for await (const session of conversationClient.listAllUserSessions(USER_ID)) {
  console.log(session.id);
}
parseResponse()
protected parseResponse<T>(request, response): Promise<VetchResponse<T>>;

Defined in: server-client/dist/lib/client.d.ts:168

Parses the response based on its content type.

Type Parameters
T

T

The expected type of the parsed response data.

Parameters
request

VetchOptions

The request options.

response

Response

The raw response from the request.

Returns

Promise<VetchResponse<T>>

  • The parsed response.
Inherited from

Client.parseResponse

prepareBody()
protected prepareBody(request): undefined | string;

Defined in: server-client/dist/lib/client.d.ts:158

Prepares the body for the request based on the content type.

Parameters
request

VetchOptions

The request options.

Returns

undefined | string

  • The prepared request body as a string or undefined.
Inherited from

Client.prepareBody

prepareRequest()
protected prepareRequest(request): Promise<VetchOptions>;

Defined in: server-client/dist/lib/client.d.ts:151

Prepares the request with necessary headers, authentication, and query parameters.

Parameters
request

VetchOptions

The initial request options.

Returns

Promise<VetchOptions>

  • The modified request options.
Inherited from

Client.prepareRequest

sendDeleteRequest()
sendDeleteRequest<T>(url): Promise<VetchResponse<T>>;

Defined in: server-client/dist/lib/client.d.ts:78

Sends a DELETE request to the specified URL.

Type Parameters
T

T

Parameters
url

string

The URL endpoint for the DELETE request.

Returns

Promise<VetchResponse<T>>

  • The response from the DELETE request.
Inherited from

Client.sendDeleteRequest

sendFormSubmitRequest()
sendFormSubmitRequest<T>(url, payload?): Promise<VetchResponse<T>>;

Defined in: server-client/dist/lib/client.d.ts:86

Sends a POST request with form data to the specified URL.

Type Parameters
T

T

Parameters
url

string

The URL endpoint for the POST request.

payload?

Record<string, undefined | string>

Optional payload containing form data to send with the POST request.

Returns

Promise<VetchResponse<T>>

  • The response from the POST request.
Inherited from

Client.sendFormSubmitRequest

sendGetRequest()
sendGetRequest<T>(url, queryParams?): Promise<VetchResponse<T>>;

Defined in: server-client/dist/lib/client.d.ts:94

Sends a GET request to the specified URL with optional query parameters.

Type Parameters
T

T

Parameters
url

string

The URL endpoint for the GET request.

queryParams?

Optional query parameters to append to the URL. These should be compatible with Node's URLSearchParams.

Returns

Promise<VetchResponse<T>>

  • The response from the GET request.
Inherited from

Client.sendGetRequest

sendPatchRequest()
sendPatchRequest<T>(url, payload?): Promise<VetchResponse<T>>;

Defined in: server-client/dist/lib/client.d.ts:104

Sends a PATCH request to the specified URL with an optional payload.

Type Parameters
T

T

Parameters
url

string

The URL endpoint for the PATCH request.

payload?

Optional payload to be sent as the body of the PATCH request.

Returns

Promise<VetchResponse<T>>

  • The response from the PATCH request.
Inherited from

Client.sendPatchRequest

sendPostRequest()
sendPostRequest<T>(url, payload?): Promise<VetchResponse<T>>;

Defined in: server-client/dist/lib/client.d.ts:114

Sends a POST request to the specified URL with an optional payload.

Type Parameters
T

T

Parameters
url

string

The URL endpoint for the POST request.

payload?

Optional payload to be sent as the body of the POST request.

Returns

Promise<VetchResponse<T>>

  • The response from the POST request.
Inherited from

Client.sendPostRequest

sendPutRequest()
sendPutRequest<T>(url, payload?): Promise<VetchResponse<T>>;

Defined in: server-client/dist/lib/client.d.ts:124

Sends a PUT request to the specified URL with an optional payload.

Type Parameters
T

T

Parameters
url

string

The URL endpoint for the PUT request.

payload?

Optional payload to be sent as the body of the PUT request.

Returns

Promise<VetchResponse<T>>

  • The response from the PUT request.
Inherited from

Client.sendPutRequest

sendRequest()
sendRequest<T>(request): Promise<VetchResponse<T>>;

Defined in: server-client/dist/lib/client.d.ts:144

Sends a request adding necessary headers, handling authentication, and parsing the response.

Type Parameters
T

T

Parameters
request

VetchOptions

The options defining the request, including URL, method, headers, and data.

Returns

Promise<VetchResponse<T>>

  • The parsed response from the request.
Inherited from

Client.sendRequest

sendRequestWithData()
sendRequestWithData<T>(
   method, 
   url, 
payload?): Promise<VetchResponse<T>>;

Defined in: server-client/dist/lib/client.d.ts:135

Sends a request with JSON-encoded data to the specified URL using the provided HTTP method.

Type Parameters
T

T

Parameters
method

The HTTP method to be used for the request (only POST, PATCH, or PUT are acceptable).

POST | PUT | PATCH

url

string

The URL endpoint for the request.

payload?

Optional payload to be sent as the body of the request, JSON-encoded.

Returns

Promise<VetchResponse<T>>

  • The response from the request.
Inherited from

Client.sendRequestWithData

updateConversation()
updateConversation(conversation): Promise<Conversation>;

Defined in: conversations/lib/conversations.ts:329

Updates an existing conversation with the provided details.

Parameters
conversation

Conversation

The conversation details to be updated.

Returns

Promise<Conversation>

  • A promise resolving to the updated conversation.
See

API Specification https://developer.vonage.com/en/api/conversation#updateConversation

Example

Update an conversation

const conversation = await conversationClient.updateConversation({
  id: conversation_ID,
  name: 'My Conversation',
});
console.log(conversation.name);
updateMember()
updateMember(
   conversationId, 
   memberId, 
params): Promise<Member>;

Defined in: conversations/lib/conversations.ts:667

Updates an existing member with the provided details.

Setting the state to left will result in the member leaving the conversation.

Parameters
conversationId

string

The conversation id to update the member in.

memberId

string

The member details to be updated.

params

UpdateMemberParameters

The update parameters.

Returns

Promise<Member>

  • A promise resolving to the updated member.
See

API Specification https://developer.vonage.com/en/api/conversation#updateMember

Example
import { MemberState } from '@vonage/conversation';

const member = await memberClient.updateMember(
  CONVERSATION_ID,
  MEMBER_ID,
  {
    state: MemberState.LEFT,
    from: USER_ID,
  },
);

console.log(member.name);

Type Aliases

AnyChannel

type AnyChannel = 
  | PhoneNumberChannel
  | SipChannel
  | AppChannel
  | WebSocketChannel
  | VbcChannel;

Defined in: conversations/lib/types/anyChannel.ts:7


AnyMessageBody

type AnyMessageBody = 
  | MessageASRBody
  | MessageChannelBody
  | MessageConversationBody
  | MessageCustomBody
  | MessageEventBody
  | MessageFileBody
  | MessageImageBody
  | MessageLegBody
  | MessageLocationBody
  | MessageMemberBody
  | MessageRTCAnswerBody
  | MessageRTCIdBody
  | MessageRecordBody
  | MessageRecordIdBody
  | MessageSIPDirectionBody
  | MessageSIPHangupBody
  | MessageSIPMachineBody
  | MessageSIPStatusBody
  | MessageSayBody
  | MessageSayIdBody
  | MessageStatusBody
  | MessageTemplateBody
  | MessageTextBody
  | MessageVCardBody
  | MessageVideoBody
  | MessageAudioBody;

Defined in: conversations/lib/types/anyMessageBody.ts:29


AnyMessageBodyResponse

type AnyMessageBodyResponse = { [P in keyof AnyMessageBody as SnakeToCamelCase<P>]: AnyMessageBody[P] };

Defined in: conversations/lib/types/responses/eventResponse.ts:14


AppChannel

type AppChannel = object;

Defined in: conversations/lib/types/appChannel.ts:6

Type representing an app channel.

Properties

type
type: APP;

Defined in: conversations/lib/types/appChannel.ts:10

The type of channel (app).

user
user: string;

Defined in: conversations/lib/types/appChannel.ts:15

The app user.


ASRResult

type ASRResult = object;

Defined in: conversations/lib/types/messageASRBody.ts:3

Properties

confidence
confidence: number;

Defined in: conversations/lib/types/messageASRBody.ts:12

Confidence of the word

word
word: string;

Defined in: conversations/lib/types/messageASRBody.ts:7

Word recognized


AudioSettings

type AudioSettings = object;

Defined in: conversations/lib/types/audioSettings.ts:4

Type representing audio settings.

Properties

earmuffed
earmuffed: boolean;

Defined in: conversations/lib/types/audioSettings.ts:13

Indicates whether audio is earmuffed.

enabled
enabled: boolean;

Defined in: conversations/lib/types/audioSettings.ts:8

Indicates whether audio is enabled.

muted
muted: boolean;

Defined in: conversations/lib/types/audioSettings.ts:18

Indicates whether audio is muted.


AudioSettingsRequest

type AudioSettingsRequest = object;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:4

Properties

audio
audio: boolean;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:23

Indicates whether audio is active.

earmuffed
earmuffed: boolean;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:13

Indicates whether audio is earmuffed.

enabled
enabled: boolean;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:8

Indicates whether audio is enabled.

muted
muted: boolean;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:18

Indicates whether audio is muted.


AudioSettingsResponse

type AudioSettingsResponse = object;

Defined in: conversations/lib/types/responses/memberResponse.ts:6

Properties

audio
audio: boolean;

Defined in: conversations/lib/types/responses/memberResponse.ts:25

Indicates whether audio is active.

earmuffed
earmuffed: boolean;

Defined in: conversations/lib/types/responses/memberResponse.ts:15

Indicates whether audio is earmuffed.

enabled
enabled: boolean;

Defined in: conversations/lib/types/responses/memberResponse.ts:10

Indicates whether audio is enabled.

muted
muted: boolean;

Defined in: conversations/lib/types/responses/memberResponse.ts:20

Indicates whether audio is muted.


Conversation

type Conversation = object;

Defined in: conversations/lib/types/conversation.ts:8

Represents a conversation

Properties

callback?
optional callback: ConversationCallback;

Defined in: conversations/lib/types/conversation.ts:116

Callback information (optional).

Remarks

This is not set when fetching a converstion from the API.

displayName?
optional displayName: string;

Defined in: conversations/lib/types/conversation.ts:23

The public-facing name of the conversation.

id?
readonly optional id: string;

Defined in: conversations/lib/types/conversation.ts:13

The unique identifier for this conversation.

imageUrl?
optional imageUrl: string;

Defined in: conversations/lib/types/conversation.ts:28

An image URL associated with the conversation.

name?
optional name: string;

Defined in: conversations/lib/types/conversation.ts:18

Your internal conversation name. Must be unique.

numbers?
optional numbers: AnyChannel[];

Defined in: conversations/lib/types/conversation.ts:108

Communication channels (optional).

Remarks

This is not set when fetching a converstion from the API.

properties?
optional properties: object;

Defined in: conversations/lib/types/conversation.ts:53

The conversation's properties

customData
customData: Record<string, unknown>;

Custom key-value pairs to be included with the conversation.

customSortKey
customSortKey: string;

The conversation's custom sort key.

ttl?
optional ttl: number;

The conversation's time to leave.

After how many seconds the conversation is deleted.

type
type: string;

The conversation's type.

sequenceNumber?
readonly optional sequenceNumber: number;

Defined in: conversations/lib/types/conversation.ts:43

The last Event ID in this conversation.

This ID can be used to retrieve a specific event.

state?
optional state: ConversationState;

Defined in: conversations/lib/types/conversation.ts:48

The conversation's state.

status?
readonly optional status: ConversationState;

Defined in: conversations/lib/types/conversation.ts:35

The conversation's status.

timestamp?
readonly optional timestamp: object;

Defined in: conversations/lib/types/conversation.ts:82

Timestamps for when the conversation was created, updated, and destroyed.

created?
readonly optional created: string;

The time the conversation was created.

destroyed?
readonly optional destroyed: string;

The time the conversation was destroyed (if applicable).

updated?
readonly optional updated: string;

The time the conversation was last updated.


ConversationCallback

type ConversationCallback = object;

Defined in: conversations/lib/types/conversationCallback.ts:5

Type representing a callback object in a conversation request.

Properties

eventMask?
optional eventMask: string;

Defined in: conversations/lib/types/conversationCallback.ts:14

The event mask for the callback.

method?
optional method: "POST" | "GET";

Defined in: conversations/lib/types/conversationCallback.ts:34

The callback method.

params?
optional params: object;

Defined in: conversations/lib/types/conversationCallback.ts:19

Callback parameters.

applicationId?
optional applicationId: string;

The application ID for the callback.

nccoUrl?
optional nccoUrl: string;

The NCCO URL for the callback.

url?
optional url: string;

Defined in: conversations/lib/types/conversationCallback.ts:9

The callback URL.


ConversationCallbackRequest

type ConversationCallbackRequest = object;

Defined in: conversations/lib/types/requests/conversationCallbackRequest.ts:4

Type representing a callback object in a conversation request.

Properties

event_mask?
optional event_mask: string;

Defined in: conversations/lib/types/requests/conversationCallbackRequest.ts:13

The event mask for the callback.

method
method: "POST" | "GET";

Defined in: conversations/lib/types/requests/conversationCallbackRequest.ts:33

The callback method.

params?
optional params: object;

Defined in: conversations/lib/types/requests/conversationCallbackRequest.ts:18

Callback parameters.

applicationId?
optional applicationId: string;

The application ID for the callback.

ncco_url?
optional ncco_url: string;

The NCCO URL for the callback.

url?
optional url: string;

Defined in: conversations/lib/types/requests/conversationCallbackRequest.ts:8

The callback URL.


ConversationPage

type ConversationPage = object;

Defined in: conversations/lib/types/conversationPage.ts:7

A page of conversations.

Properties

conversations
conversations: Conversation[];

Defined in: conversations/lib/types/conversationPage.ts:16

Conversations for the page.

links?
optional links: Record<string, APILink>;

Defined in: conversations/lib/types/conversationPage.ts:21

HAL links for the page.

pageSize
pageSize: number;

Defined in: conversations/lib/types/conversationPage.ts:11

How many items are in the page.


ConversationPageResponse

type ConversationPageResponse = object & APILinks;

Defined in: conversations/lib/types/responses/conversationPageResponse.ts:7

Represents the response for listing conversations retrieved from the API.

Type declaration

_embedded
_embedded: object;

Embedded data containing a list of conversations.

_embedded.conversations
_embedded.conversations: ConversationResponse[];
page_size
page_size: number;

The number of records returned in this response.


ConversationResponse

type ConversationResponse = object & Omit<Conversation, "sequenceNumber" | "displayName" | "imageUrl" | "properties"> & APILinks;

Defined in: conversations/lib/types/responses/conversationResponse.ts:7

Represents a conversation as it is returned from the API.

Type declaration

display_name?
optional display_name: string;

The public-facing name of the conversation.

image_url?
optional image_url: string;

An image URL associated with the conversation.

properties?
optional properties: object;

The conversation's properties

properties.custom_data
properties.custom_data: Record<string, unknown>;

Custom key-value pairs to be included with the conversation.

properties.custom_sort_key
properties.custom_sort_key: string;

The conversation's custom sort key.

properties.ttl?
optional properties.ttl: number;

The conversation's time to leave.

After how many seconds the conversation is deleted.

properties.type
properties.type: string;

The conversation's type.

sequence_number
sequence_number: number;

The last Event ID in this conversation. This ID can be used to retrieve a specific event.


CreateConversationRequest

type CreateConversationRequest = object;

Defined in: conversations/lib/types/requests/createConversationRequest.ts:11

Type representing a request to create a conversation.

Properties

callback?
optional callback: ConversationCallbackRequest;

Defined in: conversations/lib/types/requests/createConversationRequest.ts:67

Callback information (optional).

display_name
display_name: string;

Defined in: conversations/lib/types/requests/createConversationRequest.ts:20

The public-facing name of the conversation.

image_url
image_url: string;

Defined in: conversations/lib/types/requests/createConversationRequest.ts:25

An image URL associated with the conversation.

name
name: string;

Defined in: conversations/lib/types/requests/createConversationRequest.ts:15

Your internal conversation name.

numbers?
optional numbers: (
  | PhoneNumberChannel
  | SipChannel
  | AppChannel
  | WebSocketChannel
  | VbcChannel)[];

Defined in: conversations/lib/types/requests/createConversationRequest.ts:56

Communication channels (optional).

properties?
optional properties: object;

Defined in: conversations/lib/types/requests/createConversationRequest.ts:30

Conversation properties (optional).

custom_data?
optional custom_data: Record<string, unknown>;

Custom data as key-value pairs (optional).

custom_sort_key?
optional custom_sort_key: string;

Custom sort key (optional).

ttl?
optional ttl: number;

Time to leave in seconds for an empty conversation (optional).

type?
optional type: string;

Custom conversation type (optional).


CreateEventRequest

type CreateEventRequest = object & Pick<Event, "type" | "from">;

Defined in: conversations/lib/types/requests/createEventRequest.ts:4

Type declaration

body
body: AnyMessageBodyResponse;

CreateMemberRequest

type CreateMemberRequest = object;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:29

A Member as its sent to the API

Properties

channel
channel: AnyChannel;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:53

The channel associated with the member.

from
from: string;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:83

The user who invited the member.

knocking_id
knocking_id: string;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:73

The knocking ID for the member.

media
media: object;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:58

Media-related information for the member.

audio
audio: boolean;

Indicates whether the member has audio.

audio_settings
audio_settings: AudioSettingsRequest;

Audio settings for the member.

member_id_inviting
member_id_inviting: string;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:78

The member who invited the member.

state
state: MemberState;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:33

The member's state

user
user: object;

Defined in: conversations/lib/types/requests/createMemberRequest.ts:38

The matching user for this member.

id
id: string;

The user's ID.

name
name: string;

The user's name.


Event

type Event = object;

Defined in: conversations/lib/types/event.ts:5

Properties

body
body: AnyMessageBody;

Defined in: conversations/lib/types/event.ts:24

Data of the event.

from
from: string;

Defined in: conversations/lib/types/event.ts:19

Member ID of the event.

fromMember?
optional fromMember: object;

Defined in: conversations/lib/types/event.ts:39

Sender Memeber

id
id: string;

Member ID

fromUser?
optional fromUser: EventUser;

Defined in: conversations/lib/types/event.ts:34

Sender User

id
id: number;

Defined in: conversations/lib/types/event.ts:9

The ID of the message.

timestamp?
optional timestamp: string;

Defined in: conversations/lib/types/event.ts:29

Timestamp of the event.

type
type: EventType;

Defined in: conversations/lib/types/event.ts:14

Message type


EventPage

type EventPage = object;

Defined in: conversations/lib/types/eventPage.ts:4

Properties

events
events: Event[];

Defined in: conversations/lib/types/eventPage.ts:13

Embedded events.

links?
optional links: Record<string, APILink>;

Defined in: conversations/lib/types/eventPage.ts:18

Links to other resources.

pageSize
pageSize: number;

Defined in: conversations/lib/types/eventPage.ts:8

The number of items returned on this page.


EventPageResponse

type EventPageResponse = object & APILinks;

Defined in: conversations/lib/types/responses/eventPageResponse.ts:4

Type declaration

_embedded
_embedded: EventResponse[];

Embedded events.

page_size
page_size: number;

The number of items returned on this page.


EventResponse

type EventResponse = object & Omit<Event, "fromUser" | "body" | "fromMember"> & APILinks;

Defined in: conversations/lib/types/responses/eventResponse.ts:18

Type declaration

_embedded
_embedded: object;
_embedded.from_member
_embedded.from_member: object;
_embedded.from_member.id
_embedded.from_member.id: string;
_embedded.from_user
_embedded.from_user: EventUserResponse;
body
body: AnyMessageBodyResponse;

EventUser

type EventUser = object;

Defined in: conversations/lib/types/eventUser.ts:1

Properties

customData?
optional customData: Record<string, unknown>;

Defined in: conversations/lib/types/eventUser.ts:25

The user's custom data.

displayName
displayName: string;

Defined in: conversations/lib/types/eventUser.ts:15

The user's display name.

id
id: string;

Defined in: conversations/lib/types/eventUser.ts:5

The user's ID.

imageUrl?
optional imageUrl: string;

Defined in: conversations/lib/types/eventUser.ts:20

The user's avatar URL.

name
name: string;

Defined in: conversations/lib/types/eventUser.ts:10

The user's name.


EventUserResponse

type EventUserResponse = object & Omit<EventUser, "displayName">;

Defined in: conversations/lib/types/responses/eventResponse.ts:10

Type declaration

display_name
display_name: string;

InitiatorInvited

type InitiatorInvited = object;

Defined in: conversations/lib/types/member.ts:31

Properties

invited
invited: object;

Defined in: conversations/lib/types/member.ts:35

Details about the initiator when the member invited.

isSystem
isSystem: boolean;

true if the user was invited by an admin JWT


InitiatorInvitedResponse

type InitiatorInvitedResponse = object;

Defined in: conversations/lib/types/responses/memberResponse.ts:56

Type representing the invited initiator as its returned from the API.

Properties

invited
invited: object;

Defined in: conversations/lib/types/responses/memberResponse.ts:60

Details about the initiator when the member invited.

is_system
is_system: boolean;

true if the user was invited by an admin JWT


InitiatorJoined

type InitiatorJoined = object;

Defined in: conversations/lib/types/member.ts:9

Type representing the joined initiator.

Properties

joined
joined: object;

Defined in: conversations/lib/types/member.ts:13

Details about the initiator when the member joined.

isSystem
isSystem: boolean;

true if the user was invited by an admin JWT

memberId
memberId: string;

The member ID of the initiator.

userId
userId: string;

The user ID of the initiator.


InitiatorJoinedResponse

type InitiatorJoinedResponse = object;

Defined in: conversations/lib/types/responses/memberResponse.ts:31

Type representing the joined initiator as its returned from the API.

Properties

joined
joined: object;

Defined in: conversations/lib/types/responses/memberResponse.ts:35

Details about the initiator when the member joined.

is_system
is_system: boolean;

true if the user was invited by an admin JWT

member_id
member_id: string;

The member ID of the initiator.

user_id
user_id: string;

The user ID of the initiator.


LegState

type LegState = object;

Defined in: conversations/lib/types/messageLegBody.ts:5

Properties

reason?
optional reason: ReasonCode;

Defined in: conversations/lib/types/messageLegBody.ts:19

Reason code of the message leg

status
status: LegStatus;

Defined in: conversations/lib/types/messageLegBody.ts:9

Status of the message leg

succssful?
optional succssful: boolean;

Defined in: conversations/lib/types/messageLegBody.ts:14

If the leg is successful


ListConversationsParameters

type ListConversationsParameters = object;

Defined in: conversations/lib/types/parameters/listConversationsParameters.ts:4

Represents the query parameters for listing conversations.

Properties

byUser?
optional byUser: string;

Defined in: conversations/lib/types/parameters/listConversationsParameters.ts:39

Return the records that were created by this user.

cursor?
optional cursor: string;

Defined in: conversations/lib/types/parameters/listConversationsParameters.ts:34

The cursor to start returning results from. You are not expected to provide this manually but to follow the URL provided in _links.next.href or _links.prev.href in the response which contains a cursor value.

Remarks

When using the generator from the client, this is handled for you.

dateEnd?
optional dateEnd: string;

Defined in: conversations/lib/types/parameters/listConversationsParameters.ts:13

Return the records that occurred before this point in time.

dateStart?
optional dateStart: string;

Defined in: conversations/lib/types/parameters/listConversationsParameters.ts:8

Return the records that occurred after this point in time.

includeCustomData?
optional includeCustomData: boolean;

Defined in: conversations/lib/types/parameters/listConversationsParameters.ts:44

Include custom data for the conversation

order?
optional order: "asc" | "desc";

Defined in: conversations/lib/types/parameters/listConversationsParameters.ts:24

Return the records in ascending or descending order. Must be one of: 'asc', 'desc'.

pageSize?
optional pageSize: number;

Defined in: conversations/lib/types/parameters/listConversationsParameters.ts:18

Return this amount of records in the response.


ListEventParameters

type ListEventParameters = object;

Defined in: conversations/lib/types/parameters/listEventParameters.ts:4

List Event Parameters

Properties

cursor?
optional cursor: string;

Defined in: conversations/lib/types/parameters/listEventParameters.ts:41

The cursor to start returning results from. You are not expected to provide this manually, but to follow the URL provided in _links.next.href or _links.prev.href in the response which contains a cursor value.

endId?
optional endId: string;

Defined in: conversations/lib/types/parameters/listEventParameters.ts:18

The ID to end returning events at.

eventType?
optional eventType: string;

Defined in: conversations/lib/types/parameters/listEventParameters.ts:23

The type of event to search for. Does not currently support custom events.

excludeDeletedEvents?
optional excludeDeletedEvents: boolean;

Defined in: conversations/lib/types/parameters/listEventParameters.ts:8

Exclude deleted events.

order?
optional order: "asc" | "desc";

Defined in: conversations/lib/types/parameters/listEventParameters.ts:34

Return the records in ascending or descending order. Must be one of: 'asc', 'desc'.

pageSize?
optional pageSize: number;

Defined in: conversations/lib/types/parameters/listEventParameters.ts:28

Return this amount of records in the response.

startId?
optional startId: string;

Defined in: conversations/lib/types/parameters/listEventParameters.ts:13

The ID to start returning events at.


ListMemberParameters

type ListMemberParameters = object;

Defined in: conversations/lib/types/parameters/listMemberParameters.ts:1

Properties

cursor?
optional cursor: string;

Defined in: conversations/lib/types/parameters/listMemberParameters.ts:19

Return the records starting from this cursor

You are not expected to provide this manually, but to follow the url provided in _links.next.href or _links.prev.href in the response which contains a cursor value.

order?
optional order: "asc" | "desc";

Defined in: conversations/lib/types/parameters/listMemberParameters.ts:10

Return the records in ascending or descending order

pageSize?
optional pageSize: number;

Defined in: conversations/lib/types/parameters/listMemberParameters.ts:5

Return this number of members


ListMemberResponse

type ListMemberResponse = object & APILinks;

Defined in: conversations/lib/types/responses/listMemberResponse.ts:9

A Mmbmer as its returned from the API in the listMembers

Type declaration

_embedded
_embedded: object;
_embedded.user
_embedded.user: MemberUserResponse;

The matching user for this member.

id
id: string;

The member's id

state
state: MemberState;

The member's state


ListSessionParameters

type ListSessionParameters = object;

Defined in: conversations/lib/types/parameters/listSessionParameters.ts:1

Properties

cursor?
optional cursor: string;

Defined in: conversations/lib/types/parameters/listSessionParameters.ts:21

The cursor to start returning results from.

You are not expected to provide this manually but to follow the URL provided in _links.next.href or _links.prev.href in the response which contains a cursor value.

Remarks

When using the generator from the client, this is handled for you.

order?
optional order: "asc" | "desc";

Defined in: conversations/lib/types/parameters/listSessionParameters.ts:10

Return the records in ascending or descending order.

pageSize?
optional pageSize: number;

Defined in: conversations/lib/types/parameters/listSessionParameters.ts:5

Return the records per page


Member

type Member = object;

Defined in: conversations/lib/types/member.ts:46

Type representing a member in a conversation.

Properties

channel?
optional channel: AnyChannel;

Defined in: conversations/lib/types/member.ts:101

The channel associated with the member.

conversationId?
optional conversationId: string;

Defined in: conversations/lib/types/member.ts:58

id?
optional id: string;

Defined in: conversations/lib/types/member.ts:50

The unique ID of the member.

initiator?
optional initiator: 
  | InitiatorJoined
  | InitiatorInvited;

Defined in: conversations/lib/types/member.ts:96

The initiator of the member's joining.

invitedBy
invitedBy: string;

Defined in: conversations/lib/types/member.ts:126

The user who invited the member.

knockingId
knockingId: string;

Defined in: conversations/lib/types/member.ts:121

The knocking ID for the member.

media?
optional media: object;

Defined in: conversations/lib/types/member.ts:106

Media-related information for the member.

audio
audio: boolean;

Indicates whether audio is active.

audioSettings
audioSettings: AudioSettings;

Audio settings for the member.

state?
optional state: MemberState;

Defined in: conversations/lib/types/member.ts:63

The state of the member (INVITED, JOINED, LEFT, UNKNOWN).

timestamp?
optional timestamp: object;

Defined in: conversations/lib/types/member.ts:76

Timestamps for various states of the member.

invited
invited: string;

Timestamp when the member was invited.

joined
joined: string;

Timestamp when the member joined.

left
left: string;

Timestamp when the member left.

user
user: UserType;

Defined in: conversations/lib/types/member.ts:71

The user associated with the member.

Remarks

Either the user id or name is required.


MemberPage

type MemberPage = object;

Defined in: conversations/lib/types/memberPage.ts:4

Properties

links?
optional links: Record<string, APILink>;

Defined in: conversations/lib/types/memberPage.ts:18

HAL links for the page.

members
members: Member[];

Defined in: conversations/lib/types/memberPage.ts:13

The list of members.

pageSize
pageSize: number;

Defined in: conversations/lib/types/memberPage.ts:8

The list of members.


MemberPageResponse

type MemberPageResponse = object & APILinks;

Defined in: conversations/lib/types/responses/memberPageResponse.ts:5

Type declaration

_embedded
_embedded: object;

HAL Page response

_embedded.members
_embedded.members: ListMemberResponse[];

The members in the page.

page_size
page_size: number;

Number of members in the page.


MemberResponse

type MemberResponse = object & APILinks;

Defined in: conversations/lib/types/responses/memberResponse.ts:71

A Mmbmer as its returned from the API

Type declaration

_embedded
_embedded: object;
_embedded.user
_embedded.user: MemberUserResponse;

The matching user for this member.

channel
channel: AnyChannel;

The channel associated with the member.

id
id: string;

The member's id

initiator
initiator: 
  | InitiatorJoinedResponse
  | InitiatorInvitedResponse;

The initiator of the member's joining.

invited_by
invited_by: string;

The user who invited the member.

knocking_id
knocking_id: string;

The knocking ID for the member.

media
media: object;

Media-related information for the member.

media.audio
media.audio: boolean;

Indicates whether audio is active.

media.audio_settings
media.audio_settings: AudioSettingsResponse;

Audio settings for the member.

state
state: MemberState;

The member's state

timestamp
timestamp: object;

Timestamps for various states of the member.

timestamp.invited
timestamp.invited: string;

Timestamp when the member was invited.

timestamp.joined
timestamp.joined: string;

Timestamp when the member joined.

timestamp.left
timestamp.left: string;

Timestamp when the member left.


MemberUserResponse

type MemberUserResponse = object & APILinks;

Defined in: conversations/lib/types/responses/memberUserResponse.ts:6

The user as its returned from the API

Type declaration

display_name
display_name: string;

A string to be displayed for the user. This does not have to be unique.

id
id: string;

The user's id

name
name: string;

The Unique name for the user


MessageASRBody

type MessageASRBody = object;

Defined in: conversations/lib/types/messageASRBody.ts:15

Properties

asr
asr: object;

Defined in: conversations/lib/types/messageASRBody.ts:24

ASR Result

asrId
asrId: string;

ASR Id

callId
callId: string;

ASR Call Id

endTime?
optional endTime: string;

ASR End Time

Remarks

Present only when recording is done

error
error: string;

ASR Error

format?
optional format: string;

ASR Audio Format

Remarks

Present only when recording is done

mediaServiceUUID?
optional mediaServiceUUID: string;

ASR Media Service UUID

Remarks

Present only when recording is done

result?
optional result: ASRResult[];

ASR Results

Remarks

Present only when recording is happening

size?
optional size: number;

ASR File size

Remarks

Present only when recording is done

startTime?
optional startTime: string;

ASR Start Time

Remarks

Present only when recording is done

timeoutReason?
optional timeoutReason: string;

ASR Timeout Reason

Remarks

Present only when recording is happening

channel
channel: MessageChannelBody;

Defined in: conversations/lib/types/messageASRBody.ts:19

Channel Information


MessageAudioBody

type MessageAudioBody = object;

Defined in: conversations/lib/types/messageAudioBody.ts:3

Properties

audio
audio: object;

Defined in: conversations/lib/types/messageAudioBody.ts:12

Message audio

url
url: string;

Audio URL

messageType
messageType: AUDIO;

Defined in: conversations/lib/types/messageAudioBody.ts:7

Message type


MessageChannelBody

type MessageChannelBody = object;

Defined in: conversations/lib/types/messageChannelBody.ts:4

Properties

channel
channel: object;

Defined in: conversations/lib/types/messageChannelBody.ts:8

Channel Details

from
from: AnyChannel;

Channel is coming from user/type

to
to: AnyChannel;

Channel is going to user/type

headers
headers: Record<string, string>;

Defined in: conversations/lib/types/messageChannelBody.ts:33

Message headers

id
id: string;

Defined in: conversations/lib/types/messageChannelBody.ts:23

Message ID

type
type: ChannelType;

Defined in: conversations/lib/types/messageChannelBody.ts:28

Message Type


MessageConversationBody

type MessageConversationBody = object;

Defined in: conversations/lib/types/messageConversationBody.ts:3

Properties

displayName?
optional displayName: string;

Defined in: conversations/lib/types/messageConversationBody.ts:17

The conversation display name.

id
id: string;

Defined in: conversations/lib/types/messageConversationBody.ts:7

The conversation id.

imageUrl?
optional imageUrl: string;

Defined in: conversations/lib/types/messageConversationBody.ts:22

The image for the conversation.

name
name: string;

Defined in: conversations/lib/types/messageConversationBody.ts:12

The conversation name.

state
state: ConversationState;

Defined in: conversations/lib/types/messageConversationBody.ts:27

The conversation state.

timestamp?
readonly optional timestamp: object;

Defined in: conversations/lib/types/messageConversationBody.ts:34

Timestamps for when the conversation was created, updated, and destroyed.

created?
readonly optional created: string;

The time the conversation was created.

destroyed?
readonly optional destroyed: string;

The time the conversation was destroyed (if applicable).

updated?
readonly optional updated: string;

The time the conversation was last updated.


MessageCustomBody

type MessageCustomBody = object;

Defined in: conversations/lib/types/messageCustomBody.ts:4

Properties

custom
custom: Record<string, number | string | boolean>;

Defined in: conversations/lib/types/messageCustomBody.ts:13

Custom data for message

messageType
messageType: CUSTOM;

Defined in: conversations/lib/types/messageCustomBody.ts:8

Message type


MessageEventBody

type MessageEventBody = object;

Defined in: conversations/lib/types/messageEventBody.ts:1

Properties

eventId
eventId: string;

Defined in: conversations/lib/types/messageEventBody.ts:5

The event id.


MessageFileBody

type MessageFileBody = object;

Defined in: conversations/lib/types/messageFileBody.ts:3

Properties

file
file: object;

Defined in: conversations/lib/types/messageFileBody.ts:9

url
url: string;

File URL

messageType
messageType: FILE;

Defined in: conversations/lib/types/messageFileBody.ts:7

Message type


MessageImageBody

type MessageImageBody = object;

Defined in: conversations/lib/types/messageImageBody.ts:3

Properties

image
image: object;

Defined in: conversations/lib/types/messageImageBody.ts:12

Message image

url
url: string;

Image URL

messageType
messageType: IMAGE;

Defined in: conversations/lib/types/messageImageBody.ts:7

Message type


MessageLegBody

type MessageLegBody = object;

Defined in: conversations/lib/types/messageLegBody.ts:23

Properties

direction
direction: CallDirection;

Defined in: conversations/lib/types/messageLegBody.ts:32

Call direction of the message leg

legId
legId: string;

Defined in: conversations/lib/types/messageLegBody.ts:27

Id of the message leg

state
state: LegState;

Defined in: conversations/lib/types/messageLegBody.ts:47

State of the message leg

status
status: CallStatus;

Defined in: conversations/lib/types/messageLegBody.ts:42

Call status of the message leg

statusHistory
statusHistory: object;

Defined in: conversations/lib/types/messageLegBody.ts:52

Last status of the leg

conversationId?
optional conversationId: string;

Conversation Id

knockerId?
optional knockerId: string;

Id of the knocker

memberId?
optional memberId: string;

Member Id

state
state: LegState;

Last state of the leg

status
status: CallStatus;

Call status of the leg

type
type: Channels;

Defined in: conversations/lib/types/messageLegBody.ts:37

Channel type of the message leg


MessageLocationBody

type MessageLocationBody = object;

Defined in: conversations/lib/types/messageLocationBody.ts:3

Properties

location
location: object;

Defined in: conversations/lib/types/messageLocationBody.ts:9

address
address: string;

Address

latitude
latitude: string;

Latitude

longitude
longitude: string;

Longitude

name
name: string;

Name

messageType
messageType: LOCATION;

Defined in: conversations/lib/types/messageLocationBody.ts:7

Message Type


MessageMemberBody

type MessageMemberBody = object & Omit<Member, "status" | "id" | "conversationId"> & Omit<UpdateMemberParameters, "state" | "from">;

Defined in: conversations/lib/types/messageMemberBody.ts:4

Type declaration

audio?
optional audio: boolean;

Audio Message

memberId
memberId: string;

Member ID


MessagePlayDTMFBody

type MessagePlayDTMFBody = object;

Defined in: conversations/lib/types/messagePlayDTMFBody.ts:3

Properties

channel
channel: object;

Defined in: conversations/lib/types/messagePlayDTMFBody.ts:12

Channel information.

from
from: object;

Channel message was sent from.

from.from
from.from: object;

From Channel information.

from.from.type
from.from.type: Channels;

Channel type.

from.to
from.to: object;

To Channel information.

from.to.type
from.to.type: string;

Channel type.

from.to.user
from.to.user: string;

User ID.

from.type
from.type: Channels;

Channel type.

headers
headers: Record<string, string>;

Message headers

id
id: string;

Mmessage Id

to
to: object;

Channel message was sent to.

to.from
to.from: object;

From Channel information.

to.from.type
to.from.type: Channels;

Channel type.

to.to
to.to: object;

To Channel information.

to.to.type
to.to.type: string;

Channel type.

to.to.user
to.to.user: string;

User ID.

to.type
to.type: Channels;

Channel type.

type
type: "app" | "phone" | "sip" | "websocket" | "vcp";

Message type

digits
digits: string;

Defined in: conversations/lib/types/messagePlayDTMFBody.ts:7

The digits to play.

dtmfSeq?
optional dtmfSeq: number;

Defined in: conversations/lib/types/messagePlayDTMFBody.ts:102

The sequence number of the DTMF event.

duration
duration: number;

Defined in: conversations/lib/types/messagePlayDTMFBody.ts:112

The duration of the DTMF event.

method
method: "in";

Defined in: conversations/lib/types/messagePlayDTMFBody.ts:107

The method used to send the DTMF event.


MessageRandomBody

type MessageRandomBody = object;

Defined in: conversations/lib/types/messageRandomBody.ts:3

Properties

messageType
messageType: RANDOM;

Defined in: conversations/lib/types/messageRandomBody.ts:4


MessageRecordBody

type MessageRecordBody = object;

Defined in: conversations/lib/types/messageRecordBody.ts:1

Properties

beepEnd
beepEnd: boolean;

Defined in: conversations/lib/types/messageRecordBody.ts:30

Play beep at the end of the recording

beepStart
beepStart: boolean;

Defined in: conversations/lib/types/messageRecordBody.ts:25

Play beep at the beginning of the recording

channels
channels: number;

Defined in: conversations/lib/types/messageRecordBody.ts:50

Number of channels

detectSpeach
detectSpeach: boolean;

Defined in: conversations/lib/types/messageRecordBody.ts:35

Detect speech

format
format: string;

Defined in: conversations/lib/types/messageRecordBody.ts:20

Audio format

multiTrack
multiTrack: boolean;

Defined in: conversations/lib/types/messageRecordBody.ts:45

Recording has multiple tracks

recordId
recordId: string;

Defined in: conversations/lib/types/messageRecordBody.ts:5

Recording ID

split
split: boolean;

Defined in: conversations/lib/types/messageRecordBody.ts:40

Split the audio

streamed
streamed: boolean;

Defined in: conversations/lib/types/messageRecordBody.ts:15

Audio is streamed

transcription
transcription: object;

Defined in: conversations/lib/types/messageRecordBody.ts:55

Transcription settings

language
language: string;

Transcription language

sentimentAnalysis
sentimentAnalysis: boolean;

Include sentiment analysis

validity
validity: number;

Defined in: conversations/lib/types/messageRecordBody.ts:10

Recording URL


MessageRecordIdBody

type MessageRecordIdBody = object;

Defined in: conversations/lib/types/messageRecordIdBody.ts:1

Properties

recordId
recordId: string;

Defined in: conversations/lib/types/messageRecordIdBody.ts:5

Recording ID


MessageRTCAnswerBody

type MessageRTCAnswerBody = object & MessageRTCIdBody;

Defined in: conversations/lib/types/messageRTCAnswerBody.ts:3

Type declaration

answer
answer: string;
isFromMb
isFromMb: boolean;
sessionDestination
sessionDestination: string;

MessageRTCIdBody

type MessageRTCIdBody = object;

Defined in: conversations/lib/types/messageRTCIdBody.ts:1

Properties

rtcId
rtcId: string;

Defined in: conversations/lib/types/messageRTCIdBody.ts:5

RTC ID


MessageSayBody

type MessageSayBody = object;

Defined in: conversations/lib/types/messageSayBody.ts:1

Properties

language
language: string;

Defined in: conversations/lib/types/messageSayBody.ts:25

The language of the voice

level
level: number;

Defined in: conversations/lib/types/messageSayBody.ts:5

Volume level

loop
loop: number;

Defined in: conversations/lib/types/messageSayBody.ts:10

Number of times to repeat the audio

premium
premium: boolean;

Defined in: conversations/lib/types/messageSayBody.ts:35

Whether to use the premium voice

queue
queue: boolean;

Defined in: conversations/lib/types/messageSayBody.ts:15

Queue the audio

ssml
ssml: boolean;

Defined in: conversations/lib/types/messageSayBody.ts:45

Whether to use SSML

style
style: number;

Defined in: conversations/lib/types/messageSayBody.ts:30

The style of the voice

text
text: string;

Defined in: conversations/lib/types/messageSayBody.ts:40

The text to say

voiceName
voiceName: string;

Defined in: conversations/lib/types/messageSayBody.ts:20

The name of the voice to use


MessageSayIdBody

type MessageSayIdBody = object;

Defined in: conversations/lib/types/messageSayIdBody.ts:1

Properties

sayId
sayId: string;

Defined in: conversations/lib/types/messageSayIdBody.ts:5

The ID of the message.


MessageSIPBody

type MessageSIPBody = object;

Defined in: conversations/lib/types/messageSIPBody.ts:8

Standard SIP and RTC message body

Remarks

This is the same body for RTC and SIP

Properties

channel
channel: AnyChannel;

Defined in: conversations/lib/types/messageSIPBody.ts:12

Call channel


MessageSIPDirectionBody

type MessageSIPDirectionBody = object & MessageSIPBody;

Defined in: conversations/lib/types/messageSIPDirectionBody.ts:9

Standard SIP and RTC message body with direction

Type declaration

direction
direction: CallDirection;

Direction of the call

Remarks

This is the same body for RTC and SIP


MessageSIPHangupBody

type MessageSIPHangupBody = object & MessageSIPDirectionBody;

Defined in: conversations/lib/types/messageSIPHangupBody.ts:8

Standard SIP and RTC

Type declaration

bandwidth
bandwidth: object;

Bandwidth of the call

bandwidth.byteIn
bandwidth.byteIn: number;

Total number of bytes received

bandwidth.byteOut
bandwidth.byteOut: number;

Total number of bytes sent

quality
quality: object;

Quality of the call

quality.flawTotal
quality.flawTotal: number;

Total number of packets that had flaws

quality.jitterBurstRate
quality.jitterBurstRate: number;

Average amount of jitter burst

quality.jitterLossRate
quality.jitterLossRate: number;

Average amount of jitter loss

quality.jitterMaxVar
quality.jitterMaxVar: number;

Most amount ofjitter

quality.jitterMinVar
quality.jitterMinVar: number;

Least amount of jitter

quality.mosScore
quality.mosScore: number;

The MOS score of the call

quality.packetCnt
quality.packetCnt: number;

Total number of packets

quality.packetLossPerc
quality.packetLossPerc: number;

Total number of packets lost

quality.qualityPercentage
quality.qualityPercentage: number;

The percentage of the call that was not silence

reason
reason: object;

The reason of the call hangup

reason.code
reason.code: string;

The SIP reason Code of the call

reason.sipCode
reason.sipCode: string;

The SIP code of the call

reason.text
reason.text: string;

The reason of the call

Remarks

This is the same body for RTC and SIP


MessageSIPMachineBody

type MessageSIPMachineBody = object & MessageSIPBody;

Defined in: conversations/lib/types/messageSIPMachineBody.ts:3

Type declaration

confidence
confidence: number;

Confidence of the machine detection

type
type: string;

Type of SIP call


MessageSIPStatusBody

type MessageSIPStatusBody = object & MessageSIPBody;

Defined in: conversations/lib/types/messageSIPStatusBody.ts:9

SIP and RTC message body with status

Type declaration

direction
direction: CallDirection;

Direction of the call

duration
duration: string;

Call duration

endTime
endTime: string;

Time of the end of the call

from
from: string;

Phone number of the caller

networkCode
networkCode: string;

Network code of the caller

price
price: string;

Price for the call

rate
rate: string;

Rate per minute

requestTime
requestTime: string;

Time of the request

startTime
startTime: string;

Time of the start of the call

state
state: object;

State of the call

state.status
state.status: CallStatus;

Status of the call

status
status: CallStatus;

Status of the call

to
to: string;

Phone number

Remarks

This is the same body for RTC and SIP


MessageStatusBody

type MessageStatusBody = object;

Defined in: conversations/lib/types/messageStatusBody.ts:3

Properties

audio?
optional audio: object;

Defined in: conversations/lib/types/messageStatusBody.ts:58

url
url: string;

Audio URL

channelType?
optional channelType: "sms" | "mms" | "whatsapp" | "viber" | "messenger";

Defined in: conversations/lib/types/messageStatusBody.ts:17

Channel type

custom?
optional custom: Record<string, unknown>;

Defined in: conversations/lib/types/messageStatusBody.ts:94

error?
optional error: Record<string, unknown>;

Defined in: conversations/lib/types/messageStatusBody.ts:37

Message error

file?
optional file: object;

Defined in: conversations/lib/types/messageStatusBody.ts:65

url
url: string;

File URL

from?
optional from: string;

Defined in: conversations/lib/types/messageStatusBody.ts:22

Member ID of the sender.

image?
optional image: object;

Defined in: conversations/lib/types/messageStatusBody.ts:44

url
url: string;

Image URL

location?
optional location: object;

Defined in: conversations/lib/types/messageStatusBody.ts:103

address
address: string;

Location address

latitude
latitude: number;

Latitude

longitude
longitude: number;

Longitude

name
name: string;

Location name

messageType?
optional messageType: EventMessageType;

Defined in: conversations/lib/types/messageStatusBody.ts:12

Type of event

messageUUID?
optional messageUUID: string;

Defined in: conversations/lib/types/messageStatusBody.ts:32

The ID of the message.

originalEventId?
optional originalEventId: string;

Defined in: conversations/lib/types/messageStatusBody.ts:7

The ID of the message.

template?
optional template: object;

Defined in: conversations/lib/types/messageStatusBody.ts:72

name
name: string;
parameters
parameters: string[];

Template variables

text?
optional text: string;

Defined in: conversations/lib/types/messageStatusBody.ts:42

Message text

to?
optional to: string;

Defined in: conversations/lib/types/messageStatusBody.ts:27

Member ID of the recipient.

vcard?
optional vcard: object;

Defined in: conversations/lib/types/messageStatusBody.ts:96

url
url: string;

VCard URL

video?
optional video: object;

Defined in: conversations/lib/types/messageStatusBody.ts:51

url
url: string;

Video URL

whatsapp?
optional whatsapp: object;

Defined in: conversations/lib/types/messageStatusBody.ts:82

locale
locale: string;

Whats App locale

policy
policy: string;

Whats App policy


MessageTemplateBody

type MessageTemplateBody = object;

Defined in: conversations/lib/types/messageTemplateBody.ts:3

Properties

messageType
messageType: TEMPLATE;

Defined in: conversations/lib/types/messageTemplateBody.ts:7

Message type

template
template: object;

Defined in: conversations/lib/types/messageTemplateBody.ts:12

Message template

name
name: string;

Template name

parameters
parameters: unknown[];

Template parameters

whatsapp
whatsapp: object;

Whatsapp settings

whatsapp.locale
whatsapp.locale: string;

Template locale

whatsapp.policy
whatsapp.policy: string;

Template policy


MessageTextBody

type MessageTextBody = object;

Defined in: conversations/lib/types/messageTextBody.ts:3

Properties

messageType
messageType: TEXT;

Defined in: conversations/lib/types/messageTextBody.ts:7

Message type

text
text: string;

Defined in: conversations/lib/types/messageTextBody.ts:12

Message text


MessageVCardBody

type MessageVCardBody = object;

Defined in: conversations/lib/types/messageVCardBody.ts:3

Properties

image
image: object;

Defined in: conversations/lib/types/messageVCardBody.ts:19

url
url: string;

Image URL

messageType
messageType: VCARD;

Defined in: conversations/lib/types/messageVCardBody.ts:7

Message type

vcard
vcard: object;

Defined in: conversations/lib/types/messageVCardBody.ts:12

Message vcard

url
url: string;

Vcard url


MessageVideoBody

type MessageVideoBody = object;

Defined in: conversations/lib/types/messageVideoBody.ts:3

Properties

messageType
messageType: VIDEO;

Defined in: conversations/lib/types/messageVideoBody.ts:7

Message type

video
video: object;

Defined in: conversations/lib/types/messageVideoBody.ts:12

Message video

url
url: string;

Video URL


PhoneNumberChannel

type PhoneNumberChannel = object;

Defined in: conversations/lib/types/phoneNumberChannel.ts:6

Type representing a phone number channel.

Properties

number
number: string;

Defined in: conversations/lib/types/phoneNumberChannel.ts:15

The phone number.

type
type: PHONE;

Defined in: conversations/lib/types/phoneNumberChannel.ts:10

The type of channel (phone).


Session

type Session = object;

Defined in: conversations/lib/types/session.ts:13

Properties

apiKey
apiKey: string;

Defined in: conversations/lib/types/session.ts:27

The API Key for the session.

id
id: string;

Defined in: conversations/lib/types/session.ts:17

The ID of the session.

properties
properties: object;

Defined in: conversations/lib/types/session.ts:32

Session properties

ttl
ttl: number;

Time to live in seconds.

user
user: SessionUser;

Defined in: conversations/lib/types/session.ts:22

User for the session


SessionPage

type SessionPage = object;

Defined in: conversations/lib/types/sessionPage.ts:4

Properties

links?
optional links: Record<string, APILink>;

Defined in: conversations/lib/types/sessionPage.ts:18

HAL links for the page.

pageSize
pageSize: number;

Defined in: conversations/lib/types/sessionPage.ts:8

The number of items in the page.

sessions
sessions: Session[];

Defined in: conversations/lib/types/sessionPage.ts:13

Sessions in the page.


SessionPageResponse

type SessionPageResponse = object & APILinks;

Defined in: conversations/lib/types/responses/sessionPageResponse.ts:4

Type declaration

_embedded
_embedded: object;

HAL Page response

_embedded.sessions
_embedded.sessions: SessionResponse[];

The sessions in the page.

page_size
page_size: number;

Number of members in the page.


SessionResponse

type SessionResponse = object & Omit<Session, "user">;

Defined in: conversations/lib/types/responses/sessionResponse.ts:6

A session as its returned from the API

Type declaration

_embedded
_embedded: object;
_embedded.api_key
_embedded.api_key: string;

API Key for the session.

_embedded.user
_embedded.user: SessionUser;

The matching user for this member.


SessionUser

type SessionUser = object;

Defined in: conversations/lib/types/session.ts:1

Properties

id
id: string;

Defined in: conversations/lib/types/session.ts:5

The ID of the user.

name
name: string;

Defined in: conversations/lib/types/session.ts:10

The name of the user.


SipChannel

type SipChannel = object;

Defined in: conversations/lib/types/sipChannel.ts:6

Type representing a SIP channel.

Properties

password
password: string;

Defined in: conversations/lib/types/sipChannel.ts:25

The SIP password.

type
type: SIP;

Defined in: conversations/lib/types/sipChannel.ts:10

The type of channel (SIP).

uri
uri: string;

Defined in: conversations/lib/types/sipChannel.ts:15

The SIP URI.

username
username: string;

Defined in: conversations/lib/types/sipChannel.ts:20

The SIP username.


UpdateMemberParameters

type UpdateMemberParameters = object;

Defined in: conversations/lib/types/parameters/updateMemberParameters.ts:6

Parameters for updating a member.

Properties

from
from: string;

Defined in: conversations/lib/types/parameters/updateMemberParameters.ts:18

Member ID of who is making the update.

reason?
optional reason: object;

Defined in: conversations/lib/types/parameters/updateMemberParameters.ts:23

The reason for the update.

code
code: string;

The reason code.

text
text: string;

The reason text.

state
state: LEFT | JOINED;

Defined in: conversations/lib/types/parameters/updateMemberParameters.ts:13

The new state to public set

Setting to MemberState.LEFT will remove the member from the reason is required when setting to MemberState.JOINED


VbcChannel

type VbcChannel = object;

Defined in: conversations/lib/types/vbcChannel.ts:6

Type representing a VBC (Voice Business Cloud) channel.

Properties

extension
extension: string;

Defined in: conversations/lib/types/vbcChannel.ts:15

The VBC extension.

type
type: VBC;

Defined in: conversations/lib/types/vbcChannel.ts:10

The type of channel (VBC).


WebSocketChannel

type WebSocketChannel = object;

Defined in: conversations/lib/types/websocketChannel.ts:6

Type representing a WebSocket channel.

Properties

contentType
contentType: string;

Defined in: conversations/lib/types/websocketChannel.ts:20

The content type for WebSocket.

type
type: ChannelType;

Defined in: conversations/lib/types/websocketChannel.ts:10

The type of channel (WebSocket).

uri
uri: string;

Defined in: conversations/lib/types/websocketChannel.ts:15

The WebSocket URI.

Clone this wiki locally