Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Voice SDK Call Message Events


(information)

Info

The Call Message Events feature is in Public Beta.


Voice SDK Call Message Events Feature Overview

voice-sdk-call-message-events-feature-overview page anchor

The Call Message Events feature allows your client-side and server-side applications to communicate via custom ("user-defined") messages during a Voice SDK call. The feature leverages the existing signaling connection, so you don't need to set up your own communication channel between your client-side and server-side applications.

Two Twilio REST API Resources are used for server-side implementation:

  • The UserDefinedMessage Resource , which allows your server-side application to send messages to the Voice SDK end user during an active Call
  • The UserDefinedMessageSubscription Resource , which allows your server-side application to subscribe to messages sent from the Voice SDK for an active Call

The JavaScript, iOS, Android, and React Native SDKs provide the following functionality for the client-side implementation of Call Message Events:

JavaScript SDKiOS SDKAndroid SDKReact Native SDK

Requirements

requirements page anchor

In order to implement the Call Message Events feature, you must use supported versions of the Voice SDK and Helper Libraries.

Client-Side SDKMinimum Version Required
Voice JavaScript SDKv2.2.0
Voice iOS SDKv6.5.0
Voice Android SDKv6.4.0
Voice React Native SDKv1.0.0
Helper LibraryMinimum Version Required
Node.jsv3.83.1
Javav9.1.1
C#v5.81.1
Pythonv7.15.1
PHPv6.43.1
Gov1.1.1
Twilio CLIv5.2.2

A note on "active" Calls

a-note-on-active-calls page anchor

The Call Message Events feature works only for active Calls.

Client side

From the perspective of the SDK, a Call is active when both the signaling and media connections are established.

Select language/platform below to see how to active Calls are defined in the SDK.

JavaScript SDKiOS SDKAndroid SDKReact Native SDK

The Call is active and ready for sending and receiving messages when the Call instance's status is "open" or "ringing".

The status of the Call is retrieved via the call.status() method.

The Call instance's accept event is emitted when the Call state transitions to open.

The Call instance's ringing event is emitted when the Call state transitions to ringing.

Server side

From the server side perspective, an "active" Call is a Call Resource with a CallStatus value of either in-progress or ringing.

The status for a Call Resource can be retrieved from the body of status callback requests or by fetching a Call Resource via API.


Send messages from server, receive messages in the SDK

send-messages-from-server-receive-messages-in-the-sdk page anchor

The general flow of sending a message from the server side to the SDK is as follows:

  1. An SDK end user answers or places a Call and the Call is currently active.
  2. The server-side application makes a POST request to the Call's UserDefinedMessages endpoint . This request contains the message to be sent.
  3. The SDK receives the message.

Required setup for server to SDK messaging

required-setup-for-server-to-sdk-messaging page anchor

Prepare your server-side application to send messages to the SDK

prepare-your-server-side-application-to-send-messages-to-the-sdk page anchor

You must have some way of retrieving the Call SID on your server side. One way to do this is with the statusCallback and statusCallbackEvent attributes in your <Client> and <Number> TwiML, in conjunction with an endpoint that handles status callback requests from Twilio.

Prepare your client-side application to receive messages

prepare-your-client-side-application-to-receive-messages page anchor

Add logic to your client-side application that handles incoming messages.

Select your Voice SDK language/platform below to see an example of receiving messages in the SDK.

JavaScript SDKiOS SDKAndroid SDKReact Native SDK

_10
call.on("messageReceived", (message) => {
_10
console.log(JSON.stringify(message.content));
_10
//the voiceEventSid can be used for tracking the message
_10
console.log('voiceEventSid: ', message.voiceEventSid);
_10
})

Send a message from the server to the SDK

send-a-message-from-the-server-to-the-sdk page anchor

Once a Call is active, send a message by sending a POST request to the Call's UserDefinedMessages endpoint. The message content is passed in the Content parameter as a JSON string.

Send a message to the SDK

send-a-message-to-the-sdk page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_13
// Download the helper library from https://www.twilio.com/docs/node/install
_13
// Find your Account SID and Auth Token at twilio.com/console
_13
// and set the environment variables. See http://twil.io/secure
_13
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_13
const authToken = process.env.TWILIO_AUTH_TOKEN;
_13
const client = require('twilio')(accountSid, authToken);
_13
_13
client.calls('CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
_13
.userDefinedMessages
_13
.create({content: JSON.stringify({
_13
key1: 'Hello from the server side.'
_13
})})
_13
.then(user_defined_message => console.log(user_defined_message.sid));

Output

_10
{
_10
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_10
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_10
"sid": "KXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_10
"date_created": "Wed, 18 Dec 2019 20:02:01 +0000"
_10
}

(information)

Info

Be sure you're using the correct Call SID when creating a subscription.

If the SDK end user (the recipient of the message) made an outgoing call, you must subscribe to the parent Call SID.

If the SDK end user (the recipient of the message) accepted an incoming call, you must subscribe to the child Call SID.

Learn more about Call legs and the SDKs on the Voice SDK Overview page.

Receive messages in the SDK

receive-messages-in-the-sdk page anchor

Provided that the message was sent successfully from the server side, the SDK will receive the message. See the code samples above for SDK-specific handling of incoming messages.


Send messages from the SDK to the server side

send-messages-from-the-sdk-to-the-server-side page anchor

In order to receive messages on your server from the SDK, you need to set up a subscription to the Call's messages. In the subscription, you specify where Twilio should send the messages. Once a subscription is created, the SDK end-user can send messages that Twilio will then send in an HTTP request to your server-side application.

The general flow of sending a message from the SDK to the server side is as follows:

  1. An SDK end user answers or places a Call and the Call is currently active.
  2. The server-side application makes a POST request to the Call's UserDefinedMessageSubscriptions endpoint .
  3. The call.sendMessage() method is invoked in the SDK.
  4. The endpoint specified in the UserDefinedMessageSubscription request receives the message from Twilio.

Required setup for SDK to server messaging

required-setup-for-sdk-to-server-messaging page anchor

Prepare your server-side application to receive messages from the SDK

prepare-your-server-side-application-to-receive-messages-from-the-sdk page anchor
  • Before you can receive any messages from the SDK, you need to set up an HTTP endpoint where Twilio will send messages. Your endpoint must be able to accept application/json. This endpoint's URL is used as the Callback parameter when subscribing to a Call's messages.
  • You must have some way of retrieving the Call SID on your server side. One way to do this is with the statusCallback and statusCallbackEvent attributes in your <Client> and <Number> TwiML, in conjunction with an endpoint that handles status callback requests from Twilio.

Prepare your client-side application to send messages

prepare-your-client-side-application-to-send-messages page anchor

Add logic to your client-side application that:

  • constructs a valid message object
  • invokes the call.sendMessage() method during an active call
  • handles the success/failure of a message sending attempt

Select your Voice SDK language/platform below to see an example of sending a message from the SDK to the server side.

JavaScript SDKiOS SDKAndroid SDKReact Native SDK

_25
// Errors related to Call Message Events are emitted by the Device instance.
_25
device.on("error", function (twilioError) {
_25
console.error(twilioError);
_25
});
_25
_25
// a Call is active
_25
_25
// add listener for 'messageSent' event
_25
call.on("messageSent", () => {
_25
console.log("Message sent.")
_25
});
_25
_25
// create the Call Message
_25
const callMessage = {
_25
content: { key1: 'This is a messsage from the parent call' },
_25
messageType: 'user-defined-message',
_25
contentType: "application/json"
_25
}
_25
_25
// send the message
_25
// the voiceEventSid can be used for tracking the message
_25
sendMessageButton.onclick = () => {
_25
console.log('Sending message.')
_25
const voiceEventSid = call.sendMessage(callMessage)
_25
}

You can only send messages during an active Call. If you have any UI elements that your SDK end user interacts with (e.g. a "Send Message" button), make sure that sending messages is only enabled during an active Call.

Subscribe to an active Call's messages

subscribe-to-an-active-calls-messages page anchor

Once a Call is active, your server-side must set up a subscription to a Call's messages by making a POST request to the Call's UserDefinedMessageSubscription Resource.

The Callback parameter specifies your endpoint that will receive messages from Twilio.

Subscribe to a Call's Messages

subscribe-to-a-calls-messages page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_14
// Download the helper library from https://www.twilio.com/docs/node/install
_14
// Find your Account SID and Auth Token at twilio.com/console
_14
// and set the environment variables. See http://twil.io/secure
_14
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_14
const authToken = process.env.TWILIO_AUTH_TOKEN;
_14
const client = require('twilio')(accountSid, authToken);
_14
_14
client.calls('CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
_14
.userDefinedMessageSubscriptions
_14
.create({
_14
method: 'POST',
_14
callback: 'https://www.example.com/your-endpoint-that-can-receive-messages'
_14
})
_14
.then(user_defined_message_subscription => console.log(user_defined_message_subscription.sid));

Output

_10
{
_10
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_10
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_10
"sid": "ZYXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_10
"date_created": "Wed, 18 Dec 2019 20:02:01 +0000",
_10
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Calls/CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/UserDefinedMessageSubscriptions/ZYXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.json"
_10
}

(information)

Info

Be sure you're using the correct Call SID when creating a subscription.

If the SDK end user (who is sending messages that you wish to receive) made an outgoing call, you must subscribe to the parent Call SID.

If the SDK end user (who is sending messages that you wish to receive) accepted an incoming call, you must subscribe to the child Call SID.

Learn more about Call legs and the SDKs on the Voice SDK Overview page.

Send a message from the SDK

send-a-message-from-the-sdk page anchor

Once a subscription has been set up, the SDK can now invoke the call.sendMessage() event.

Receive the message on the server side

receive-the-message-on-the-server-side page anchor

If a subscription was created and then the SDK sent a message successfully, your Callback endpoint will receive the request from Twilio. The message from the SDK is contained in the Content property of the request.

See an example of the Twilio's request to the Callback endpoint below, followed by a description of the parameters in the request.


_10
{
_10
ContentType: 'application/json',
_10
Content: '{"key1":"This is a messsage from the SDK"}',
_10
SequenceNumber: '1',
_10
CallSid: 'CA0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa',
_10
Timestamp: 'Fri, 2 Dec 2022 22:02:49 +0000',
_10
AccountSid: 'ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa',
_10
Sid: 'KXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
_10
}

ParameterDescription
ContentTypeThe Content-Type of the request. (Currently, Twilio only supports application/json.)
ContentThe message sent from the SDK as a JSON string.
SequenceNumberThe order in which the messages were sent, starting from 0.
CallSidThe SID of the Call Resource this message is associated with
TimestampThe timestamp when Twilio sent this message, given as UTC in RFC 2822 format.
AccountSidThe Twilio Account SID associated with the message.
SidA unique identifier for this message. This can be used for internal logging/tracking.

Rate this page: