Path parameters
-
The SID of the room with the RoomRecording resources to read.
Query parameters
-
Status string
Read only the recordings with this status. Can be:
processing
,completed
, ordeleted
.Values are
processing
,completed
,deleted
, orfailed
. -
SourceSid string
Read only the recordings that have this
source_sid
. -
DateCreatedAfter string(date-time)
Read only recordings that started on or after this ISO 8601 datetime with time zone.
-
DateCreatedBefore string(date-time)
Read only Recordings that started before this ISO 8601 datetime with time zone.
-
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
.
GET /v1/Rooms/{RoomSid}/Recordings
curl \
-X GET https://video.twilio.com/v1/Rooms/{RoomSid}/Recordings \
--user "username:password"
Response examples (200)
{
"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,
"room_sid": "string",
"sid": "string",
"size": 42,
"source_sid": "string",
"status": "processing",
"track_name": "string",
"type": "audio",
"url": "https://example.com"
}
]
}
Response examples (200)
{
"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,
"room_sid": "string",
"sid": "string",
"size": 42,
"source_sid": "string",
"status": "processing",
"track_name": "string",
"type": "audio",
"url": "https://example.com"
}
]
}