Search + K

Command Palette

Search for a command to run...

Sign In

Retrieve a list of recordings belonging to the call used to make the request

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

Retrieve a list of recordings belonging to the call used to make the request

Parameters

path Path Parameters

Name Type
AccountSid required

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

`AC${string}`
CallSid required

The Call SID of the resources to read.

`CA${string}`

query Query Parameters

Name Type
DateCreated

The date_created value, specified as YYYY-MM-DD, of the resources to read. You can also specify inequality: DateCreated<=YYYY-MM-DD will return recordings generated at or before midnight on a given date, and DateCreated>=YYYY-MM-DD returns recordings generated at or after midnight on a date.

string
DateCreated<

The date_created value, specified as YYYY-MM-DD, of the resources to read. You can also specify inequality: DateCreated<=YYYY-MM-DD will return recordings generated at or before midnight on a given date, and DateCreated>=YYYY-MM-DD returns recordings generated at or after midnight on a date.

string
DateCreated>

The date_created value, specified as YYYY-MM-DD, of the resources to read. You can also specify inequality: DateCreated<=YYYY-MM-DD will return recordings generated at or before midnight on a given date, and DateCreated>=YYYY-MM-DD returns recordings generated at or after midnight on a date.

string
PageSize

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

number
Page

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

number
PageToken

The page token. This is provided by the API.

string

Responses

200 application/json

OK

{
recordings?: ApiV2010AccountCallCallRecording
interface ApiV2010AccountCallCallRecording {
account_sid?: `AC${string}` | null;
api_version?: string | null;
call_sid?: `CA${string}` | null;
conference_sid?: `CF${string}` | null;
date_created?: string | null;
date_updated?: string | null;
start_time?: string | null;
duration?: string | null;
sid?: `RE${string}` | null;
price?: number | null;
uri?: string | null;
encryption_details?: null;
price_unit?: string | null;
status?: CallRecordingEnumStatus;
channels?: number;
source?: CallRecordingEnumSource;
error_code?: number | null;
track?: string | null;
}
[]
;
end?: number;
first_page_uri?: string;
next_page_uri?: string | null;
page?: number;
page_size?: number;
previous_page_uri?: string | null;
start?: number;
uri?: string;
}