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

Recording


(warning)

Warning

For Customers building HIPAA-compliant workflows with Recordings, we require customers to enforce at least HTTP Authentication. To learn more about building for HIPAA compliance, please visit the latest requirements here.

A Recording resource represents the recording associated with a voice call, conference, or SIP Trunk. Using the Recordings REST API you can fetch, start, stop, pause, resume, and delete voice recordings.

You can initiate a recording for your call, conference, or trunk via one of the following methods.

  1. <Record> in TwiML
  2. <Dial record> in TwiML
  3. <Conference record> in TwiML
  4. Record=true in an outbound call via the REST API
  5. Enable recording on an elastic SIP Trunk in the Twilio Console
  6. Post to Recording resource of an in-progress Call SID

Once a recording is initiated, you can optionally pause, resume, or stop the recording


Recording properties

Property nameTypePIIDescription
account_sidSID<AC>
Not PII

The SID of the Account that created the Recording resource.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

api_versionstring

The API version used during the recording.


call_sidSID<CA>

The SID of the Call the Recording resource is associated with. This will always refer to the parent leg of a two-leg call.

Pattern: ^CA[0-9a-fA-F]{32}$Min length: 34Max length: 34

conference_sidSID<CF>

The Conference SID that identifies the conference associated with the recording, if a conference recording.

Pattern: ^CF[0-9a-fA-F]{32}$Min length: 34Max length: 34

date_createdstring<date-time-rfc-2822>

The date and time in GMT that the resource was created specified in RFC 2822 format.


date_updatedstring<date-time-rfc-2822>

The date and time in GMT that the resource was last updated specified in RFC 2822 format.


start_timestring<date-time-rfc-2822>

The start time of the recording in GMT and in RFC 2822 format.


durationstring

The length of the recording in seconds.


sidSID<RE>

The unique string that that we created to identify the Recording resource.

Pattern: ^RE[0-9a-fA-F]{32}$Min length: 34Max length: 34

pricestring

The one-time cost of creating the recording in the price_unit currency.


price_unitstring

The currency used in the price property. Example: USD.


statusenum<string>

The status of the recording. Can be: processing, completed, absent or deleted. For information about more detailed statuses on in-progress recordings, check out how to Update a Recording Resource.

Possible values:
in-progresspausedstoppedprocessingcompletedabsentdeleted

channelsinteger

The number of channels in the final recording file. Can be: 1 or 2.


sourceenum<string>

How the recording was created. Can be: DialVerb, Conference, OutboundAPI, Trunking, RecordVerb, StartCallRecordingAPI, and StartConferenceRecordingAPI.

Possible values:
DialVerbConferenceOutboundAPITrunkingRecordVerbStartCallRecordingAPIStartConferenceRecordingAPI

error_codeinteger

The error code that describes why the recording is absent. The error code is described in our Error Dictionary. This value is null if the recording status is not absent.


uristring

The URI of the resource, relative to https://api.twilio.com.


encryption_detailsobject

How to decrypt the recording if it was encrypted using Call Recording Encryption feature.


subresource_urisobject<uri-map>

A list of related resources identified by their relative URIs.


media_urlstring<uri>

The URL of the media file associated with this recording resource. When stored externally, this is the full URL location of the media file.


Create a Recording resource


_10
POST https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Calls/{CallsSid}/Recordings.json

To start a recording on a live call, make an HTTP Post request to the Recordings list resource of an in-progress Call.

Note that the maximum length of the recording can be up to the maximum length of the Call itself.

(warning)

Legal implications of call recording

If you choose to record voice or video calls, you need to comply with certain laws and regulations, including those regarding obtaining consent to record (such as California's Invasion of Privacy Act and similar laws in other jurisdictions). Additional information on the legal implications of call recording can be found in the "Legal Considerations with Recording Voice and Video Communications" Help Center article.

Notice: Twilio recommends that you consult with your legal counsel to make sure that you are complying with all applicable laws in connection with communications you record or store using Twilio.

Optional Parameters

The following optional parameters are available for you to POST when starting a recording on a live call:

Path parameters

Property nameTypeRequiredPIIDescription
AccountSidSID<AC>required

The SID of the Account that will create the resource.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

CallSidSID<CA>required

The SID of the Call to associate the resource with.

Pattern: ^CA[0-9a-fA-F]{32}$Min length: 34Max length: 34

Request body parameters

Property nameTypeRequiredPIIDescription
RecordingStatusCallbackEventarray[string]Optional

The recording status events on which we should call the recording_status_callback URL. Can be: in-progress, completed and absent and the default is completed. Separate multiple event values with a space.


RecordingStatusCallbackstring<uri>Optional

The URL we should call using the recording_status_callback_method on each recording event specified in recording_status_callback_event. For more information, see RecordingStatusCallback parameters.


RecordingStatusCallbackMethodenum<http-method>Optional

The HTTP method we should use to call recording_status_callback. Can be: GET or POST and the default is POST.

Possible values:
GETPOST

TrimstringOptional

Whether to trim any leading and trailing silence in the recording. Can be: trim-silence or do-not-trim and the default is do-not-trim. trim-silence trims the silence from the beginning and end of the recording and do-not-trim does not.


RecordingChannelsstringOptional

The number of channels used in the recording. Can be: mono or dual and the default is mono. mono records all parties of the call into one channel. dual records each party of a 2-party call into separate channels.


RecordingTrackstringOptional

The audio track to record for the call. Can be: inbound, outbound or both. The default is both. inbound records the audio that is received by Twilio. outbound records the audio that is generated from Twilio. both records the audio that is received and generated by Twilio.

RecordingStatusCallback

Twilio will pass the following parameters with its request to your RecordingStatusCallback URL:

ParameterDescription
AccountSidThe unique identifier of the Account responsible for this recording.
CallSidA unique identifier for the call associated with the recording.
RecordingSidThe unique identifier for the recording.
RecordingUrlThe URL of the recorded audio.
RecordingStatusThe status of the recording. Possible values are: in-progress, completed, absent.
RecordingDurationThe length of the recording, in seconds (only provided when RecordingStatus is completed).
RecordingChannelsThe number of channels in the final recording file as an integer. Possible values are 1, 2.
RecordingStartTimeThe timestamp of when the recording started.
RecordingSourceThe initiation method used to create this recording. For recordings initiated with this API, the value will be StartCallRecordingAPI.
RecordingTrackThe audio track recorded. Possible values are inbound, outbound or both.

Create Recording on a Live Call

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_18
// Download the helper library from https://www.twilio.com/docs/node/install
_18
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_18
_18
// Find your Account SID and Auth Token at twilio.com/console
_18
// and set the environment variables. See http://twil.io/secure
_18
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_18
const authToken = process.env.TWILIO_AUTH_TOKEN;
_18
const client = twilio(accountSid, authToken);
_18
_18
async function createCallRecording() {
_18
const recording = await client
_18
.calls("CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_18
.recordings.create();
_18
_18
console.log(recording.accountSid);
_18
}
_18
_18
createCallRecording();

Output

_20
{
_20
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"api_version": "2010-04-01",
_20
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"conference_sid": null,
_20
"channels": 2,
_20
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"date_updated": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"price": null,
_20
"price_unit": null,
_20
"duration": null,
_20
"sid": "REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_20
"source": "StartCallRecordingAPI",
_20
"status": "in-progress",
_20
"error_code": null,
_20
"encryption_details": null,
_20
"track": "both",
_20
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Calls/CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json"
_20
}

Create a dual channel call recording with RecordingStatusCallback

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_22
// Download the helper library from https://www.twilio.com/docs/node/install
_22
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_22
_22
// Find your Account SID and Auth Token at twilio.com/console
_22
// and set the environment variables. See http://twil.io/secure
_22
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_22
const authToken = process.env.TWILIO_AUTH_TOKEN;
_22
const client = twilio(accountSid, authToken);
_22
_22
async function createCallRecording() {
_22
const recording = await client
_22
.calls("CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_22
.recordings.create({
_22
recordingChannels: "dual",
_22
recordingStatusCallback: "https://myapp.com/recording-events",
_22
recordingStatusCallbackEvent: ["in-progress completed"],
_22
});
_22
_22
console.log(recording.accountSid);
_22
}
_22
_22
createCallRecording();

Output

_20
{
_20
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"api_version": "2010-04-01",
_20
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"conference_sid": null,
_20
"channels": 2,
_20
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"date_updated": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"price": null,
_20
"price_unit": null,
_20
"duration": null,
_20
"sid": "REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_20
"source": "StartCallRecordingAPI",
_20
"status": "in-progress",
_20
"error_code": null,
_20
"encryption_details": null,
_20
"track": "both",
_20
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Calls/CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json"
_20
}


Fetch a Recording Resource

You can fetch a Recording Resource's metadata or you can fetch a WAV or MP3 media file of the Recording.

Fetch Recording Resource's metadata


_10
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Recordings/{Sid}.json

A Recording Resource's metadata can be returned in JSON or XML format.

  • For JSON format, append .json to the Recording Resource's URI.
  • For XML format, append .xml to the Recording Resource's URI.

The table below lists the parameters for fetching a Recording Resource's metadata.

Path parameters

Property nameTypeRequiredPIIDescription
AccountSidSID<AC>required

The SID of the Account that created the Recording resource to fetch.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

SidSID<RE>required

The Twilio-provided string that uniquely identifies the Recording resource to fetch.

Pattern: ^RE[0-9a-fA-F]{32}$Min length: 34Max length: 34

Query parameters

Property nameTypeRequiredPIIDescription
IncludeSoftDeletedbooleanOptional

A boolean parameter indicating whether to retrieve soft deleted recordings or not. Recordings metadata are kept after deletion for a retention period of 40 days.

Fetch a Recording Resource's metadata in JSON format

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_18
// Download the helper library from https://www.twilio.com/docs/node/install
_18
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_18
_18
// Find your Account SID and Auth Token at twilio.com/console
_18
// and set the environment variables. See http://twil.io/secure
_18
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_18
const authToken = process.env.TWILIO_AUTH_TOKEN;
_18
const client = twilio(accountSid, authToken);
_18
_18
async function fetchRecording() {
_18
const recording = await client
_18
.recordings("REXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_18
.fetch();
_18
_18
console.log(recording.accountSid);
_18
}
_18
_18
fetchRecording();

Output

_28
{
_28
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"api_version": "2010-04-01",
_28
"call_sid": "CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_28
"conference_sid": "CFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_28
"channels": 1,
_28
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_28
"date_updated": "Fri, 14 Oct 2016 21:56:38 +0000",
_28
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_28
"price": "-0.00250",
_28
"price_unit": "USD",
_28
"duration": "4",
_28
"sid": "REXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"source": "StartConferenceRecordingAPI",
_28
"status": "completed",
_28
"error_code": null,
_28
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",
_28
"subresource_uris": {
_28
"add_on_results": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/AddOnResults.json",
_28
"transcriptions": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Transcriptions.json"
_28
},
_28
"encryption_details": {
_28
"encryption_public_key_sid": "CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_28
"encryption_cek": "OV4h6zrsxMIW7h0Zfqwfn6TI2GCNl54KALlg8wn8YB8KYZhXt6HlgvBWAmQTlfYVeLWydMiCewY0YkDDT1xmNe5huEo9vjuKBS5OmYK4CZkSx1NVv3XOGrZHpd2Pl/5WJHVhUK//AUO87uh5qnUP2E0KoLh1nyCLeGcEkXU0RfpPn/6nxjof/n6m6OzZOyeIRK4Oed5+rEtjqFDfqT0EVKjs6JAxv+f0DCc1xYRHl2yV8bahUPVKs+bHYdy4PVszFKa76M/Uae4jFA9Lv233JqWcxj+K2UoghuGhAFbV/JQIIswY2CBYI8JlVSifSqNEl9vvsTJ8bkVMm3MKbG2P7Q==",
_28
"encryption_iv": "8I2hhNIYNTrwxfHk"
_28
},
_28
"media_url": "http://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
_28
}

Fetch a Recording's media file


_10
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Recordings/{Sid}.mp3

You can fetch a Recording's media file by appending .wav or .mp3 to the Recording Resource's URI.

It's only possible to fetch a Recording's media file when the Recording's status is completed and the media is stored at Twilio.

If the media associated with a Recording Resource is not available/was deleted/was uploaded to external storage, the request returns Not Found.

WAV

Without an extension, or with a ".wav", a binary WAV audio file is returned with mime-type "audio/x-wav". For example:


_10
GET https://api.twilio.com/2010-04-01/Accounts/ACXXXXX.../Recordings/RE557ce644e5ab84fa21cc21112e22c485

WAV files have a bitrate of 128kbps

MP3

Appending ".mp3" to the URI returns a binary MP3 audio file with mime-type type "audio/mpeg". For example:


_10
GET https://api.twilio.com/2010-04-01/Accounts/ACXXXXX.../Recordings/RE557ce644e5ab84fa21cc21112e22c485.mp3

MP3 files have a bitrate of 32kbps

Download dual-channel media file

Call and Conference Recordings are stored at Twilio in dual-channel format by default.

  • For a two-party Call, the Recording's dual-channel media file contains the audio from each call leg in separate channels.
  • For a Conference, the Recording's dual-channel media file contains the the audio of the first participant that joined the Conference in the first channel and all other audio from the Call mixed in the second channel. Note: To access this feature, you need to enable Dual-channel Conference Recordings on the Voice Settings page in the Console . Read the Dual-channel Conference Recordings Changelog entry for more information.

When sending the GET request to download a Recording's media file, the RequestedChannels query parameter can be used to specify whether the media file should be downmixed to a single channel or if the file should be downloaded in its original, dual-channel format.

  • If the RequestedChannels query parameter is not specified when requesting the media file for a two-party Call Recording , Twilio returns a media file in the format specified when the Recording was created.
  • If the RequestedChannels query parameter is not specified when requesting the media file for a Conference Recording , Twilio returns a media file in mono-channel format.
(warning)

Warning

Attempting to download a dual-channel media file when the dual-channel format is not available results in a 400 Bad Request error. This may happen in the following cases:

  • A Recording created with the <Record> verb. All audio from those Recordings are mixed and saved in a mono-channel media file.
  • Older Recordings from two-party Calls or Conferences prior to dual-channel support.

To prevent application errors while managing Recordings, you should implement retry logic when sending a GET request for a Recording's media file. If a request for a dual-channel media file fails, retry with a GET request for with RequestedChannels=1.

Example: Download MP3 media in dual-channel format

Append .mp3?RequestedChannels=2 to your Recording's URL


_10
GET https://api.twilio.com/2010-04-01/Accounts/ACXXXXX.../Recordings/RE557ce644e5ab84fa21cc21112e22c485.mp3?RequestedChannels=2

Example: Download WAV media in dual-channel format

Append .wav?RequestedChannels=2to your Recording's URL


_10
GET https://api.twilio.com/2010-04-01/Accounts/ACXXXXX.../Recordings/RE557ce644e5ab84fa21cc21112e22c485.wav?RequestedChannels=2


Fetch a Recording's Transcriptions

Each Recording instance resource has a Transcriptions subresource which represents the set of transcriptions generated from the recording (if any):


_10
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Recordings/{RecordingSid}/Transcriptions

This will return the set of transcriptions available for the recording identified by {RecordingSid}. See the Transcriptions resource documentation for properties and response formats.


Read multiple Recording Resources


_10
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Recordings.json

This API call returns a list of Recordings, each representing a recording generated during a call or conference for the given account. The list returned includes paging information.

(warning)

Warning

The list of Recordings is protected by your account credentials like most parts of this API. You must use HTTP basic auth to access the Recordings list resource.

You can also get a list of Recordings from a specific call or conference by including the call or conference SID in your request like so:


_10
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Recordings.json
_10
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Recordings.json

Parameters

Path parameters

Property nameTypeRequiredPIIDescription
AccountSidSID<AC>required

The SID of the Account that created the Recording resources to read.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

Query parameters

Property nameTypeRequiredPIIDescription
DateCreatedstring<date-time>Optional

Only include recordings that were created on this date. Specify a date as YYYY-MM-DD in GMT, for example: 2009-07-06, to read recordings that were created on this date. You can also specify an inequality, such as DateCreated<=YYYY-MM-DD, to read recordings that were created on or before midnight of this date, and DateCreated>=YYYY-MM-DD to read recordings that were created on or after midnight of this date.


DateCreated<string<date-time>Optional

Only include recordings that were created on this date. Specify a date as YYYY-MM-DD in GMT, for example: 2009-07-06, to read recordings that were created on this date. You can also specify an inequality, such as DateCreated<=YYYY-MM-DD, to read recordings that were created on or before midnight of this date, and DateCreated>=YYYY-MM-DD to read recordings that were created on or after midnight of this date.


DateCreated>string<date-time>Optional

Only include recordings that were created on this date. Specify a date as YYYY-MM-DD in GMT, for example: 2009-07-06, to read recordings that were created on this date. You can also specify an inequality, such as DateCreated<=YYYY-MM-DD, to read recordings that were created on or before midnight of this date, and DateCreated>=YYYY-MM-DD to read recordings that were created on or after midnight of this date.


CallSidSID<CA>Optional

The Call SID of the resources to read.

Pattern: ^CA[0-9a-fA-F]{32}$Min length: 34Max length: 34

ConferenceSidSID<CF>Optional

The Conference SID that identifies the conference associated with the recording to read.

Pattern: ^CF[0-9a-fA-F]{32}$Min length: 34Max length: 34

IncludeSoftDeletedbooleanOptional

A boolean parameter indicating whether to retrieve soft deleted recordings or not. Recordings metadata are kept after deletion for a retention period of 40 days.


PageSizeintegerOptional

How many resources to return in each list page. The default is 50, and the maximum is 1000.

Minimum: 1Maximum: 1000

PageintegerOptional

The page index. This value is simply for client state.

Minimum: 0

PageTokenstringOptional

The page token. This is provided by the API.

Examples

Get all Recordings for a given Call

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_19
// Download the helper library from https://www.twilio.com/docs/node/install
_19
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_19
_19
// Find your Account SID and Auth Token at twilio.com/console
_19
// and set the environment variables. See http://twil.io/secure
_19
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_19
const authToken = process.env.TWILIO_AUTH_TOKEN;
_19
const client = twilio(accountSid, authToken);
_19
_19
async function listRecording() {
_19
const recordings = await client.recordings.list({
_19
callSid: "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_19
limit: 20,
_19
});
_19
_19
recordings.forEach((r) => console.log(r.accountSid));
_19
}
_19
_19
listRecording();

Output

_40
{
_40
"end": 0,
_40
"first_page_uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings.json?PageSize=1&Page=0",
_40
"next_page_uri": null,
_40
"page": 0,
_40
"page_size": 1,
_40
"previous_page_uri": null,
_40
"recordings": [
_40
{
_40
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"api_version": "2010-04-01",
_40
"call_sid": "CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"conference_sid": "CFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"channels": 1,
_40
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_40
"date_updated": "Fri, 14 Oct 2016 21:56:38 +0000",
_40
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_40
"price": "0.04",
_40
"price_unit": "USD",
_40
"duration": "4",
_40
"sid": "REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"source": "StartConferenceRecordingAPI",
_40
"status": "completed",
_40
"error_code": null,
_40
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",
_40
"subresource_uris": {
_40
"add_on_results": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/AddOnResults.json",
_40
"transcriptions": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Transcriptions.json"
_40
},
_40
"encryption_details": {
_40
"encryption_public_key_sid": "CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"encryption_cek": "OV4h6zrsxMIW7h0Zfqwfn6TI2GCNl54KALlg8wn8YB8KYZhXt6HlgvBWAmQTlfYVeLWydMiCewY0YkDDT1xmNe5huEo9vjuKBS5OmYK4CZkSx1NVv3XOGrZHpd2Pl/5WJHVhUK//AUO87uh5qnUP2E0KoLh1nyCLeGcEkXU0RfpPn/6nxjof/n6m6OzZOyeIRK4Oed5+rEtjqFDfqT0EVKjs6JAxv+f0DCc1xYRHl2yV8bahUPVKs+bHYdy4PVszFKa76M/Uae4jFA9Lv233JqWcxj+K2UoghuGhAFbV/JQIIswY2CBYI8JlVSifSqNEl9vvsTJ8bkVMm3MKbG2P7Q==",
_40
"encryption_iv": "8I2hhNIYNTrwxfHk"
_40
},
_40
"media_url": "http://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
_40
}
_40
],
_40
"start": 0,
_40
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings.json?PageSize=1&Page=0"
_40
}

Get all Recordings for an Account

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_16
// Download the helper library from https://www.twilio.com/docs/node/install
_16
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_16
_16
// Find your Account SID and Auth Token at twilio.com/console
_16
// and set the environment variables. See http://twil.io/secure
_16
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_16
const authToken = process.env.TWILIO_AUTH_TOKEN;
_16
const client = twilio(accountSid, authToken);
_16
_16
async function listRecording() {
_16
const recordings = await client.recordings.list({ limit: 20 });
_16
_16
recordings.forEach((r) => console.log(r.accountSid));
_16
}
_16
_16
listRecording();

Output

_40
{
_40
"end": 0,
_40
"first_page_uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings.json?PageSize=1&Page=0",
_40
"next_page_uri": null,
_40
"page": 0,
_40
"page_size": 1,
_40
"previous_page_uri": null,
_40
"recordings": [
_40
{
_40
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"api_version": "2010-04-01",
_40
"call_sid": "CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"conference_sid": "CFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"channels": 1,
_40
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_40
"date_updated": "Fri, 14 Oct 2016 21:56:38 +0000",
_40
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_40
"price": "0.04",
_40
"price_unit": "USD",
_40
"duration": "4",
_40
"sid": "REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"source": "StartConferenceRecordingAPI",
_40
"status": "completed",
_40
"error_code": null,
_40
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",
_40
"subresource_uris": {
_40
"add_on_results": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/AddOnResults.json",
_40
"transcriptions": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Transcriptions.json"
_40
},
_40
"encryption_details": {
_40
"encryption_public_key_sid": "CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"encryption_cek": "OV4h6zrsxMIW7h0Zfqwfn6TI2GCNl54KALlg8wn8YB8KYZhXt6HlgvBWAmQTlfYVeLWydMiCewY0YkDDT1xmNe5huEo9vjuKBS5OmYK4CZkSx1NVv3XOGrZHpd2Pl/5WJHVhUK//AUO87uh5qnUP2E0KoLh1nyCLeGcEkXU0RfpPn/6nxjof/n6m6OzZOyeIRK4Oed5+rEtjqFDfqT0EVKjs6JAxv+f0DCc1xYRHl2yV8bahUPVKs+bHYdy4PVszFKa76M/Uae4jFA9Lv233JqWcxj+K2UoghuGhAFbV/JQIIswY2CBYI8JlVSifSqNEl9vvsTJ8bkVMm3MKbG2P7Q==",
_40
"encryption_iv": "8I2hhNIYNTrwxfHk"
_40
},
_40
"media_url": "http://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
_40
}
_40
],
_40
"start": 0,
_40
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings.json?PageSize=1&Page=0"
_40
}

Filter Recordings with Exact Match

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_19
// Download the helper library from https://www.twilio.com/docs/node/install
_19
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_19
_19
// Find your Account SID and Auth Token at twilio.com/console
_19
// and set the environment variables. See http://twil.io/secure
_19
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_19
const authToken = process.env.TWILIO_AUTH_TOKEN;
_19
const client = twilio(accountSid, authToken);
_19
_19
async function listRecording() {
_19
const recordings = await client.recordings.list({
_19
dateCreated: new Date("2016-10-18 00:00:00"),
_19
limit: 20,
_19
});
_19
_19
recordings.forEach((r) => console.log(r.accountSid));
_19
}
_19
_19
listRecording();

Output

_40
{
_40
"end": 0,
_40
"first_page_uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings.json?PageSize=1&Page=0",
_40
"next_page_uri": null,
_40
"page": 0,
_40
"page_size": 1,
_40
"previous_page_uri": null,
_40
"recordings": [
_40
{
_40
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"api_version": "2010-04-01",
_40
"call_sid": "CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"conference_sid": "CFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"channels": 1,
_40
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_40
"date_updated": "Fri, 14 Oct 2016 21:56:38 +0000",
_40
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_40
"price": "0.04",
_40
"price_unit": "USD",
_40
"duration": "4",
_40
"sid": "REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"source": "StartConferenceRecordingAPI",
_40
"status": "completed",
_40
"error_code": null,
_40
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",
_40
"subresource_uris": {
_40
"add_on_results": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/AddOnResults.json",
_40
"transcriptions": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Transcriptions.json"
_40
},
_40
"encryption_details": {
_40
"encryption_public_key_sid": "CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"encryption_cek": "OV4h6zrsxMIW7h0Zfqwfn6TI2GCNl54KALlg8wn8YB8KYZhXt6HlgvBWAmQTlfYVeLWydMiCewY0YkDDT1xmNe5huEo9vjuKBS5OmYK4CZkSx1NVv3XOGrZHpd2Pl/5WJHVhUK//AUO87uh5qnUP2E0KoLh1nyCLeGcEkXU0RfpPn/6nxjof/n6m6OzZOyeIRK4Oed5+rEtjqFDfqT0EVKjs6JAxv+f0DCc1xYRHl2yV8bahUPVKs+bHYdy4PVszFKa76M/Uae4jFA9Lv233JqWcxj+K2UoghuGhAFbV/JQIIswY2CBYI8JlVSifSqNEl9vvsTJ8bkVMm3MKbG2P7Q==",
_40
"encryption_iv": "8I2hhNIYNTrwxfHk"
_40
},
_40
"media_url": "http://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
_40
}
_40
],
_40
"start": 0,
_40
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings.json?PageSize=1&Page=0"
_40
}

Filter Recordings with Range Match

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_20
// Download the helper library from https://www.twilio.com/docs/node/install
_20
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_20
_20
// Find your Account SID and Auth Token at twilio.com/console
_20
// and set the environment variables. See http://twil.io/secure
_20
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_20
const authToken = process.env.TWILIO_AUTH_TOKEN;
_20
const client = twilio(accountSid, authToken);
_20
_20
async function listRecording() {
_20
const recordings = await client.recordings.list({
_20
dateCreatedBefore: new Date("2016-10-15 00:00:00"),
_20
dateCreatedAfter: new Date("2016-10-12 00:00:00"),
_20
limit: 20,
_20
});
_20
_20
recordings.forEach((r) => console.log(r.accountSid));
_20
}
_20
_20
listRecording();

Output

_40
{
_40
"end": 0,
_40
"first_page_uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings.json?PageSize=1&Page=0",
_40
"next_page_uri": null,
_40
"page": 0,
_40
"page_size": 1,
_40
"previous_page_uri": null,
_40
"recordings": [
_40
{
_40
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"api_version": "2010-04-01",
_40
"call_sid": "CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"conference_sid": "CFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"channels": 1,
_40
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_40
"date_updated": "Fri, 14 Oct 2016 21:56:38 +0000",
_40
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_40
"price": "0.04",
_40
"price_unit": "USD",
_40
"duration": "4",
_40
"sid": "REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"source": "StartConferenceRecordingAPI",
_40
"status": "completed",
_40
"error_code": null,
_40
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",
_40
"subresource_uris": {
_40
"add_on_results": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/AddOnResults.json",
_40
"transcriptions": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Transcriptions.json"
_40
},
_40
"encryption_details": {
_40
"encryption_public_key_sid": "CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_40
"encryption_cek": "OV4h6zrsxMIW7h0Zfqwfn6TI2GCNl54KALlg8wn8YB8KYZhXt6HlgvBWAmQTlfYVeLWydMiCewY0YkDDT1xmNe5huEo9vjuKBS5OmYK4CZkSx1NVv3XOGrZHpd2Pl/5WJHVhUK//AUO87uh5qnUP2E0KoLh1nyCLeGcEkXU0RfpPn/6nxjof/n6m6OzZOyeIRK4Oed5+rEtjqFDfqT0EVKjs6JAxv+f0DCc1xYRHl2yV8bahUPVKs+bHYdy4PVszFKa76M/Uae4jFA9Lv233JqWcxj+K2UoghuGhAFbV/JQIIswY2CBYI8JlVSifSqNEl9vvsTJ8bkVMm3MKbG2P7Q==",
_40
"encryption_iv": "8I2hhNIYNTrwxfHk"
_40
},
_40
"media_url": "http://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
_40
}
_40
],
_40
"start": 0,
_40
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings.json?PageSize=1&Page=0"
_40
}


Update a Recording resource


_10
POST https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Recordings/{Sid}.json
_10
POST https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Recordings/{Sid}.json

An active call or conference recording can be paused and resumed. Additionally, an active call recording can be stopped which will end the recording immediately. (stopped not supported for conference recordings)

Parameters

Path parameters

Property nameTypeRequiredPIIDescription
AccountSidSID<AC>required

The SID of the Account that created the Recording resource to update.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

CallSidSID<CA>required

The Call SID of the resource to update.

Pattern: ^CA[0-9a-fA-F]{32}$Min length: 34Max length: 34

Sidstringrequired

The Twilio-provided string that uniquely identifies the Recording resource to update.

Request body parameters

Property nameTypeRequiredPIIDescription
Statusenum<string>required

The new status of the recording. Can be: stopped, paused, in-progress.

Possible values:
in-progresspausedstoppedprocessingcompletedabsent

PauseBehaviorstringOptional

Whether to record during a pause. Can be: skip or silence and the default is silence. skip does not record during the pause period, while silence will replace the actual audio of the call with silence during the pause period. This parameter only applies when setting status is set to paused.

Examples:

(warning)

Warning

Note in examples below that the API responses for updates to the recording resource will provide a more detailed inflight 'status' including paused, in-progress, or stopped but a fetch on the recording resource will only show processing or completed.

Pause a call recording with skip option

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_22
// Download the helper library from https://www.twilio.com/docs/node/install
_22
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_22
_22
// Find your Account SID and Auth Token at twilio.com/console
_22
// and set the environment variables. See http://twil.io/secure
_22
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_22
const authToken = process.env.TWILIO_AUTH_TOKEN;
_22
const client = twilio(accountSid, authToken);
_22
_22
async function updateCallRecording() {
_22
const recording = await client
_22
.calls("CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_22
.recordings("REXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_22
.update({
_22
pauseBehavior: "skip",
_22
status: "paused",
_22
});
_22
_22
console.log(recording.accountSid);
_22
}
_22
_22
updateCallRecording();

Output

_20
{
_20
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"api_version": "2010-04-01",
_20
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"conference_sid": null,
_20
"channels": 2,
_20
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"date_updated": "Fri, 14 Oct 2016 21:56:36 +0000",
_20
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"price": null,
_20
"price_unit": null,
_20
"duration": null,
_20
"sid": "REXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"source": "StartCallRecordingAPI",
_20
"status": "paused",
_20
"error_code": null,
_20
"encryption_details": null,
_20
"track": "both",
_20
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Calls/CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json"
_20
}

Pause a conference recording with skip option

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_19
// Download the helper library from https://www.twilio.com/docs/node/install
_19
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_19
_19
// Find your Account SID and Auth Token at twilio.com/console
_19
// and set the environment variables. See http://twil.io/secure
_19
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_19
const authToken = process.env.TWILIO_AUTH_TOKEN;
_19
const client = twilio(accountSid, authToken);
_19
_19
async function updateConferenceRecording() {
_19
const recording = await client
_19
.conferences("CFXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_19
.recordings("REXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_19
.update({ status: "paused" });
_19
_19
console.log(recording.accountSid);
_19
}
_19
_19
updateConferenceRecording();

Output

_19
{
_19
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_19
"api_version": "2010-04-01",
_19
"call_sid": "CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_19
"conference_sid": "CFXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_19
"channels": 1,
_19
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_19
"date_updated": "Fri, 14 Oct 2016 21:56:39 +0000",
_19
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_19
"price": null,
_19
"price_unit": null,
_19
"duration": null,
_19
"sid": "REXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_19
"source": "StartConferenceRecordingAPI",
_19
"status": "paused",
_19
"error_code": null,
_19
"encryption_details": null,
_19
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Conferences/CFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json"
_19
}

(information)

Info

In the following two examples, note the use of Twilio.CURRENT to reference the currently active recording without requiring an explicit Recording SID.

Twilio.CURRENT can be used for pause, resume, or stop actions on calls with only one active recording.

(warning)

Warning

Note that if your use case has multiple or concurrent recordings for a call or conference, you will need to use the Recording SID to reference the correct one. Using Twilio.CURRENT to reference a recording on a resource that has multiple recordings will result in an error that the request failed because there is more than one recording for the given Call.

Pause a call recording with Twilio.CURRENT

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_19
// Download the helper library from https://www.twilio.com/docs/node/install
_19
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_19
_19
// Find your Account SID and Auth Token at twilio.com/console
_19
// and set the environment variables. See http://twil.io/secure
_19
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_19
const authToken = process.env.TWILIO_AUTH_TOKEN;
_19
const client = twilio(accountSid, authToken);
_19
_19
async function updateCallRecording() {
_19
const recording = await client
_19
.calls("CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_19
.recordings("Twilio.CURRENT")
_19
.update({ status: "paused" });
_19
_19
console.log(recording.accountSid);
_19
}
_19
_19
updateCallRecording();

Output

_20
{
_20
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"api_version": "2010-04-01",
_20
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"conference_sid": null,
_20
"channels": 2,
_20
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"date_updated": "Fri, 14 Oct 2016 21:56:36 +0000",
_20
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"price": null,
_20
"price_unit": null,
_20
"duration": null,
_20
"sid": "Twilio.CURRENT",
_20
"source": "StartCallRecordingAPI",
_20
"status": "paused",
_20
"error_code": null,
_20
"encryption_details": null,
_20
"track": "both",
_20
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Calls/CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json"
_20
}

Pause a conference recording with Twilio.CURRENT

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_19
// Download the helper library from https://www.twilio.com/docs/node/install
_19
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_19
_19
// Find your Account SID and Auth Token at twilio.com/console
_19
// and set the environment variables. See http://twil.io/secure
_19
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_19
const authToken = process.env.TWILIO_AUTH_TOKEN;
_19
const client = twilio(accountSid, authToken);
_19
_19
async function updateConferenceRecording() {
_19
const recording = await client
_19
.conferences("CFXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_19
.recordings("Twilio.CURRENT")
_19
.update({ status: "paused" });
_19
_19
console.log(recording.accountSid);
_19
}
_19
_19
updateConferenceRecording();

Output

_19
{
_19
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_19
"api_version": "2010-04-01",
_19
"call_sid": "CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_19
"conference_sid": "CFXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_19
"channels": 1,
_19
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_19
"date_updated": "Fri, 14 Oct 2016 21:56:39 +0000",
_19
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_19
"price": null,
_19
"price_unit": null,
_19
"duration": null,
_19
"sid": "Twilio.CURRENT",
_19
"source": "StartConferenceRecordingAPI",
_19
"status": "paused",
_19
"error_code": null,
_19
"encryption_details": null,
_19
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Conferences/CFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json"
_19
}

Resume a call recording

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_19
// Download the helper library from https://www.twilio.com/docs/node/install
_19
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_19
_19
// Find your Account SID and Auth Token at twilio.com/console
_19
// and set the environment variables. See http://twil.io/secure
_19
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_19
const authToken = process.env.TWILIO_AUTH_TOKEN;
_19
const client = twilio(accountSid, authToken);
_19
_19
async function updateCallRecording() {
_19
const recording = await client
_19
.calls("CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_19
.recordings("REXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_19
.update({ status: "in-progress" });
_19
_19
console.log(recording.accountSid);
_19
}
_19
_19
updateCallRecording();

Output

_20
{
_20
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"api_version": "2010-04-01",
_20
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"conference_sid": null,
_20
"channels": 2,
_20
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"date_updated": "Fri, 14 Oct 2016 21:56:36 +0000",
_20
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"price": null,
_20
"price_unit": null,
_20
"duration": null,
_20
"sid": "REXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"source": "StartCallRecordingAPI",
_20
"status": "in-progress",
_20
"error_code": null,
_20
"encryption_details": null,
_20
"track": "both",
_20
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Calls/CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json"
_20
}

Stop a call recording

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_19
// Download the helper library from https://www.twilio.com/docs/node/install
_19
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_19
_19
// Find your Account SID and Auth Token at twilio.com/console
_19
// and set the environment variables. See http://twil.io/secure
_19
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_19
const authToken = process.env.TWILIO_AUTH_TOKEN;
_19
const client = twilio(accountSid, authToken);
_19
_19
async function updateCallRecording() {
_19
const recording = await client
_19
.calls("CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_19
.recordings("REXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_19
.update({ status: "stopped" });
_19
_19
console.log(recording.accountSid);
_19
}
_19
_19
updateCallRecording();

Output

_20
{
_20
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"api_version": "2010-04-01",
_20
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"conference_sid": null,
_20
"channels": 2,
_20
"date_created": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"date_updated": "Fri, 14 Oct 2016 21:56:36 +0000",
_20
"start_time": "Fri, 14 Oct 2016 21:56:34 +0000",
_20
"price": null,
_20
"price_unit": null,
_20
"duration": null,
_20
"sid": "REXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_20
"source": "StartCallRecordingAPI",
_20
"status": "stopped",
_20
"error_code": null,
_20
"encryption_details": null,
_20
"track": "both",
_20
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Calls/CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/REaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json"
_20
}


Delete a Recording resource


_10
DELETE https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Recordings/{Sid}.json

Deletes a recording from your account. Once the recording is deleted:

  • You will no longer be billed for storage of those minutes
  • The recording is set to a status of deleted
  • The metadata is preserved for a period of 40 days , during which time the metadata is still visible in the Console and API.
  • The recording media cannot be recovered.

If successful, DELETE returns HTTP 204 (No Content) with no body.

Please note that only completed recordings can be deleted. Recordings with any other status are not available for deletion.

Path parameters

Property nameTypeRequiredPIIDescription
AccountSidSID<AC>required

The SID of the Account that created the Recording resources to delete.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

SidSID<RE>required

The Twilio-provided string that uniquely identifies the Recording resource to delete.

Pattern: ^RE[0-9a-fA-F]{32}$Min length: 34Max length: 34
(information)

Info

To to delete a large set of Voice Recordings, you can use the bulk deletion capabilities available in the Twilio Console.

Example:

Delete Recording

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
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
_14
_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 = twilio(accountSid, authToken);
_14
_14
async function deleteRecording() {
_14
await client.recordings("REXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX").remove();
_14
}
_14
_14
deleteRecording();


Rate this page: