Returns a single Track resource represented by `track_sid`. Note: This is one resource with the Video API that requires a SID, be Track Name on the subscriber side is not guaranteed to be unique.
Returns a single Track resource represented by track_sid
. Note: This is one resource with the Video API that requires a SID, be Track Name on the subscriber side is not guaranteed to be unique.
Path parameters
-
The SID of the Room where the Track resource to fetch is subscribed.
-
The SID of the participant that subscribes to the Track resource to fetch.
-
The SID of the RoomParticipantSubscribedTrack resource to fetch.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^MT[0-9a-fA-F]{32}$
.
GET
/v1/Rooms/{RoomSid}/Participants/{ParticipantSid}/SubscribedTracks/{Sid}
curl \
--request GET 'https://video.twilio.com/v1/Rooms/{RoomSid}/Participants/{ParticipantSid}/SubscribedTracks/{Sid}' \
--user "username:password"
Response examples (200)
{
"sid": "MTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://video.twilio.com/v1/Rooms/RMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Participants/PAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/SubscribedTracks/MTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"kind": "data",
"name": "bob-track",
"enabled": true,
"room_sid": "RMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"date_created": "2015-07-30T20:00:00Z",
"date_updated": "2015-07-30T20:00:00Z",
"publisher_sid": "PAbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"participant_sid": "PAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}