---
title: "List room session members"
method: GET
path: "/api/video/room_sessions/{id}/members"
tags: ["Room Sessions"]
---

# List room session members

`GET /api/video/room_sessions/{id}/members`

A list of Members for a particular Room Session.

#### Permissions

The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Video_.

[Learn more about API scopes](/docs/platform/your-signalwire-api-space).

## Path parameters

- `id` string, uuid, required — Universal Unique Identifier.

## Query parameters

- `page_number` integer
- `page_size` integer
- `page_token` string

## Response `200`

The request has succeeded.

- VideoListRoomSessionMembersResponse — List room session members response.
  - `links` VideoPaginationLinks, required — Pagination links for list responses.
    - `self` string, required — Link to the current page.
    - `first` string, required — Link to the first page.
    - `next` string — Link to the next page.
    - `prev` string — Link to the previous page.
  - `data` VideoRoomSessionMember[], required — List of room session members.
    - `id` string, uuid, required — Universal Unique Identifier.
    - `room_session_id` string, uuid, required — Universal Unique Identifier.
    - `name` string, nullable, required — Display name of the Member.
    - `join_time` string, date-time, nullable, required — Timestamp of when the Member joined the Room Session.
    - `leave_time` string, date-time, nullable, required — Timestamp of when the Member left the Room Session.
    - `duration` integer, nullable, required — How long the Member stayed in the Room Session, in seconds. Null if the member has not yet joined.
    - `cost_in_dollars` number, double, required — The cost of the member's participation in dollars.

## Other responses

- `400` — The request is invalid.
- `401` — Access is unauthorized.
- `422` — The request contains invalid parameters. See errors for details.
- `500` — An internal server error occurred.

---

[API](https://skmtc.net/signalwire/apis/signalwire-rest-api.md) · [All operations](https://skmtc.net/signalwire/apis/signalwire-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/signalwire/signalwire-rest-api/versions/05c5164b85c7/schema)
