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

# View a room session.

`GET /room_sessions/{room_session_id}`

## Path parameters

- `room_session_id` string, uuid, required

## Query parameters

- `include_participants` boolean

## Response `200`

Get room session response.

- object
  - `data` RoomSession
    - `id` string, uuid — A unique identifier for the room session.
    - `room_id` string, uuid — Identify the room hosting that room session.
    - `active` boolean — Shows if the room session is active or not.
    - `created_at` string, date-time — ISO 8601 timestamp when the room session was created.
    - `updated_at` string, date-time — ISO 8601 timestamp when the room session was updated.
    - `ended_at` string, date-time — ISO 8601 timestamp when the room session has ended.
    - `participants` 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
    - `record_type` string

## Other responses

- `404` — Resource not found

---

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