View a list of room sessions.
GET/rooms/:room_id/sessions
Request
Path Parameters
The unique identifier of a room.
Query Parameters
ISO 8601 date for filtering room sessions created on that date.
ISO 8601 date for filtering room sessions created after that date.
ISO 8601 date for filtering room sessions created before that date.
ISO 8601 date for filtering room sessions updated on that date.
ISO 8601 date for filtering room sessions updated after that date.
ISO 8601 date for filtering room sessions updated before that date.
ISO 8601 date for filtering room sessions ended on that date.
ISO 8601 date for filtering room sessions ended after that date.
ISO 8601 date for filtering room sessions ended before that date.
Filter active or inactive room sessions.
To decide if room participants should be included in the response.
Possible values: >= 1
and <= 250
Default value: 20
The size of the page.
Possible values: >= 1
Default value: 1
The page number to load.
Responses
200: List room sessions response.
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/rooms/:room_id/sessions' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": [
{
"id": "7b61621f-62e0-4aad-ab11-9fd19e272e73",
"room_id": "7b61621f-5fe4-4aad-ab11-9fd19e272e73",
"active": false,
"created_at": "2021-04-16T09:46:20.954863Z",
"updated_at": "2021-04-16T10:24:55.962200Z",
"ended_at": "2021-04-16T10:24:55.962200Z",
"participants": [],
"record_type": "room_session"
}
],
"meta": {
"page_number": 2,
"page_size": 25,
"total_pages": 3,
"total_results": 55
}
}