Get a list of room participants
TODO: Resource-level docs
Get a list of room participants.
Path parameters
-
The SID of the Room resource.
Query parameters
-
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/Video/Rooms/{RoomSid}/Participants
curl \
-X GET https://insights.twilio.com/v1/Video/Rooms/{RoomSid}/Participants \
--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"
},
"participants": [
{
"account_sid": "string",
"codecs": [
"VP8"
],
"duration_sec": 42,
"edge_location": "ashburn",
"end_reason": "string",
"error_code": 42,
"error_code_url": "string",
"join_time": "2023-05-04T09:42:00+00:00",
"leave_time": "2023-05-04T09:42:00+00:00",
"media_region": "us1",
"participant_identity": "string",
"participant_sid": "string",
"room_sid": "string",
"status": "in_progress",
"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"
},
"participants": [
{
"account_sid": "string",
"codecs": [
"VP8"
],
"duration_sec": 42,
"edge_location": "ashburn",
"end_reason": "string",
"error_code": 42,
"error_code_url": "string",
"join_time": "2024-05-04T09:42:00+00:00",
"leave_time": "2024-05-04T09:42:00+00:00",
"media_region": "us1",
"participant_identity": "string",
"participant_sid": "string",
"room_sid": "string",
"status": "in_progress",
"url": "https://example.com"
}
]
}