List of all Track recordings
Single-track, single-media recordings
List of all Track recordings.
Query parameters
-
Status string
Read only the recordings that have this status. Can be:
processing
,completed
, ordeleted
.Values are
processing
,completed
,deleted
, orfailed
. -
SourceSid string
Read only the recordings that have this
source_sid
. -
GroupingSid array[string]
Read only recordings with this
grouping_sid
, which may include aparticipant_sid
and/or aroom_sid
. -
DateCreatedAfter string(date-time)
Read only recordings that started on or after this ISO 8601 date-time with time zone.
-
DateCreatedBefore string(date-time)
Read only recordings that started before this ISO 8601 date-time with time zone, given as
YYYY-MM-DDThh:mm:ss+|-hh:mm
orYYYY-MM-DDThh:mm:ssZ
. -
MediaType string
Read only recordings that have this media type. Can be either
audio
orvideo
.Values are
audio
,video
, ordata
. -
PageSize integer
How many resources to return in each list page. The default is 50, and the maximum is 1000.
Minimum value is
1
, maximum value is1000
.
curl \
-X GET https://video.twilio.com/v1/Recordings \
--user "username:password"
{
"meta": {
"first_page_url": "https://example.com",
"key": "string",
"next_page_url": "https://example.com",
"page": 42,
"page_size": 42,
"previous_page_url": "https://example.com",
"url": "https://example.com"
},
"recordings": [
{
"account_sid": "string",
"codec": "VP8",
"container_format": "mka",
"date_created": "2023-05-04T09:42:00+00:00",
"duration": 42,
"links": {},
"media_external_location": "https://example.com",
"offset": 42,
"sid": "string",
"size": 42,
"source_sid": "string",
"status": "processing",
"status_callback": "https://example.com",
"status_callback_method": "HEAD",
"track_name": "string",
"type": "audio",
"url": "https://example.com"
}
]
}
{
"meta": {
"first_page_url": "https://example.com",
"key": "string",
"next_page_url": "https://example.com",
"page": 42,
"page_size": 42,
"previous_page_url": "https://example.com",
"url": "https://example.com"
},
"recordings": [
{
"account_sid": "string",
"codec": "VP8",
"container_format": "mka",
"date_created": "2024-05-04T09:42:00+00:00",
"duration": 42,
"links": {},
"media_external_location": "https://example.com",
"offset": 42,
"sid": "string",
"size": 42,
"source_sid": "string",
"status": "processing",
"status_callback": "https://example.com",
"status_callback_method": "HEAD",
"track_name": "string",
"type": "audio",
"url": "https://example.com"
}
]
}