For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Log inSign up
Support
GuidesReference
GuidesReference
    • Core
      • Overview
    • Agents
      • Overview
      • AgentBase
      • AgentServer
      • BedrockAgent
      • CLI Tools
      • Configuration
      • ContextBuilder
      • DataMap
      • FunctionResult
      • Helper Functions
      • LiveWire
      • MCP Gateway
      • PomBuilder
      • Prefabs
      • Search
      • SkillBase
      • Skills
      • SWAIGFunction
      • SWMLBuilder
      • SWMLService
      • WebService
    • RELAY
      • Overview
      • Actions
      • Call
      • Constants
      • Events
      • Message
      • RelayClient
      • RelayError
    • REST Client
      • Overview
      • Addresses
      • Calling
      • Chat
      • Compat
      • Datasphere
      • Fabric
      • Imported Numbers
      • Logs
      • Lookup
      • MFA
      • Number Groups
      • Phone Numbers
      • Project
      • PubSub
      • Queues
      • Recordings
      • Registry
      • RestClient
      • Short Codes
      • SignalWireRestError
      • SIP Profile
      • Verified Callers
      • Video
        • VideoConferences
        • VideoConferenceTokens
        • VideoRoomRecordings
        • VideoRooms
        • VideoRoomSessions
          • get
          • list
          • list_events
          • list_members
          • list_recordings
        • VideoRoomTokens
        • VideoStreams
LogoLogoSignalWire Docs
Log inSign up
Support
On this page
  • Response Example
  • Example
REST ClientVideoVideoRoomSessions

list_events

|View as Markdown|Open in Claude|
Was this page helpful?
Edit this page
Previous

list_members

Next
Built with

List events that occurred during a room session (e.g., participant joins, leaves, audio/video mute changes).

Path parameters

idstringRequiredformat: "uuid"
Unique ID of the Room Session.

Query parameters

page_numberintegerOptional>=0Defaults to 0
Page number to return. Requires `page_token` for values greater than 0.
page_sizeintegerOptional1-1000Defaults to 50
Specify the number of results to return on a single page. The default page size is `50` and the maximum is `1000`.
page_tokenstringOptional
Token for cursor-based pagination. Required when `page_number` is greater than 0.

Response

linksobjectRequired
Pagination links.
datalist of objectsRequired
List of room session events.

Response Example

Response
1{
2 "links": {
3 "self": "https://example.signalwire.com/api/video/rooms?page=2",
4 "first": "https://example.signalwire.com/api/video/rooms?page=1",
5 "next": "https://example.signalwire.com/api/video/rooms?page=3",
6 "prev": "https://example.signalwire.com/api/video/rooms?page=1"
7 },
8 "data": [
9 {
10 "id": "e44f56a8-7c69-6153-b45c-ab3456789012",
11 "project_id": "a1b2c3d4-5e6f-7890-abcd-ef1234567890",
12 "room_id": "b2c3d4e5-6f70-8901-bcde-f12345678901",
13 "room_session_id": "c22d24f6-5a47-4597-9a23-c7d01e696b92",
14 "level": "info",
15 "name": "room.started",
16 "payload": {},
17 "created_at": "2022-01-01T10:00:00Z",
18 "room_recording_id": "d33e35f7-6b58-5042-a34b-ef2345678901",
19 "room_participant_id": "e44f68a9-7c69-6153-b56d-ef3456789012"
20 }
21 ]
22}

Example

1from signalwire.rest import RestClient
2
3client = RestClient(
4 project="your-project-id",
5 token="your-api-token",
6 host="your-space.signalwire.com",
7)
8
9events = client.video.room_sessions.list_events("session-id")