Server SDKs
Build AI agents, control calls, send messages, and more
list_members
List members (participants) who joined the room during a session.
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": "c22d24f6-5a47-4597-9a23-c7d01e696b92",11 "room_session_id": "a1b2c3d4-5e6f-7890-abcd-ef1234567890",12 "name": "John Smith",13 "join_time": "2022-01-01T10:00:00Z",14 "leave_time": "2022-01-01T11:00:00Z",15 "duration": 120,16 "cost_in_dollars": 0.0517 }18 ]19}
1from signalwire.rest import RestClient23client = RestClient(4 project="your-project-id",5 token="your-api-token",6 host="your-space.signalwire.com",7)89members = client.video.room_sessions.list_members("session-id")