Server SDKs
Build AI agents, control calls, send messages, and more
list_events
List events that occurred during a room session (e.g., participant joins, leaves, audio/video mute changes).
format: "uuid"
>=0
0
1-1000
50
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}
1from signalwire.rest import RestClient23client = RestClient(4 project="your-project-id",5 token="your-api-token",6 host="your-space.signalwire.com",7)89events = client.video.room_sessions.list_events("session-id")