---
title: "View a list of room participants."
method: GET
path: "/room_sessions/{room_session_id}/participants"
tags: ["Room Sessions"]
---

# View a list of room participants.

`GET /room_sessions/{room_session_id}/participants`

## Path parameters

- `room_session_id` string, uuid, required

## Query parameters

- `filter` object
  - `date_joined_at` object
    - `eq` string, date — ISO 8601 date for filtering room participants that joined on that date.
    - `gte` string, date — ISO 8601 date for filtering room participants that joined on or after that date.
    - `lte` string, date — ISO 8601 date for filtering room participants that joined on or before that date.
  - `date_updated_at` object
    - `eq` string, date — ISO 8601 date for filtering room participants updated on that date.
    - `gte` string, date — ISO 8601 date for filtering room participants updated on or after that date.
    - `lte` string, date — ISO 8601 date for filtering room participants updated on or before that date.
  - `date_left_at` object
    - `eq` string, date — ISO 8601 date for filtering room participants that left on that date.
    - `gte` string, date — ISO 8601 date for filtering room participants that left on or after that date.
    - `lte` string, date — ISO 8601 date for filtering room participants that left on or before that date.
  - `context` string — Filter room participants based on the context.
- `page[number]` integer
- `page[size]` integer

## Response `200`

List room participants response.

- object
  - `data` RoomParticipant[]
    - `id` string, uuid — A unique identifier for the room participant.
    - `session_id` string, uuid — Identify the room session that participant is part of.
    - `context` string — Context provided to the given participant through the client SDK
    - `joined_at` string, date-time — ISO 8601 timestamp when the participant joined the session.
    - `updated_at` string, date-time — ISO 8601 timestamp when the participant was updated.
    - `left_at` string, date-time — ISO 8601 timestamp when the participant left the session.
    - `record_type` string
  - `meta` PaginationMeta
    - `total_pages` integer, required
    - `total_results` integer
    - `page_number` integer, required
    - `page_size` integer

## Other responses

- `4XX` — Unexpected error

---

[API](https://skmtc.net/team-telnyx/apis/telnyx-api.md) · [All operations](https://skmtc.net/team-telnyx/apis/telnyx-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/team-telnyx/telnyx-api/revisions/e32d46c5945b/schema)
