Fetch room recording
Single-track, single-media room recordings
Path parameters
-
The SID of the Room resource with the recording to fetch.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^RM[0-9a-fA-F]{32}$
. -
The SID of the RoomRecording resource to fetch.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^RT[0-9a-fA-F]{32}$
.
GET
/v1/Rooms/{RoomSid}/Recordings/{Sid}
curl \
--request GET 'https://video.twilio.com/v1/Rooms/{RoomSid}/Recordings/{Sid}' \
--user "username:password"
Response examples (200)
{
"sid": "RTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://video.twilio.com/v1/Rooms/RMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/RTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"size": 0,
"type": "audio",
"codec": "opus",
"links": {
"media": "https://video.twilio.com/v1/Rooms/RMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Recordings/RTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Media"
},
"offset": 10,
"status": "processing",
"duration": 0,
"room_sid": "RMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"source_sid": "MTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"track_name": "A name",
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"date_created": "2015-07-30T20:00:00Z",
"grouping_sids": {
"room_sid": "RMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
},
"container_format": "mka",
"media_external_location": "https://my-super-duper-bucket.s3.amazonaws.com/my/path/"
}