Server SDKs
Build AI agents, control calls, send messages, and more
Retrieve a single video conference by its unique identifier.
format: "uuid"
1{2 "id": "c22d24f6-5a47-4597-9a23-c7d01e696b92",3 "name": "my_conference",4 "display_name": "My Conference's Name",5 "description": "This conference will be used for full company all hands meetings",6 "join_from": "2022-01-01T00:00:00Z",7 "join_until": "2022-12-31T23:59:59Z",8 "quality": "720p",9 "layout": "grid-responsive",10 "size": "medium",11 "record_on_start": false,12 "tone_on_entry_and_exit": true,13 "user_join_video_off": false,14 "room_join_video_off": false,15 "enable_chat": true,16 "enable_room_previews": false,17 "dark_primary": "#044EF4",18 "dark_background": "#FFFFFF",19 "dark_foreground": "#1D2127",20 "dark_success": "#17BB58",21 "dark_negative": "#F42C50",22 "light_primary": "#044EF4",23 "light_background": "#FFFFFF",24 "light_foreground": "#1D2127",25 "light_success": "#17BB58",26 "light_negative": "#F42C50",27 "meta": {},28 "created_at": "2022-01-01T10:00:00Z",29 "updated_at": "2022-01-01T11:00:00Z",30 "active_session": {31 "id": "c22d24f6-5a47-4597-9a23-c7d01e696b92",32 "room_id": "a1b2c3d4-5e6f-7890-abcd-ef1234567890",33 "name": "my_example_room",34 "display_name": "My Room's Name",35 "join_from": "2022-01-01T00:00:00Z",36 "join_until": "2022-12-31T23:59:59Z",37 "remove_at": "2022-12-31T23:59:59Z",38 "remove_after_seconds_elapsed": 120,39 "layout": "grid-responsive",40 "max_members": 20,41 "fps": 20,42 "quality": "720p",43 "start_time": "2022-01-01T10:00:00Z",44 "end_time": "2022-01-01T11:00:00Z",45 "duration": 120,46 "status": "completed",47 "record_on_start": true,48 "enable_room_previews": true,49 "preview_url": "https://example.signalwire.com/api/video/room_sessions/c22d24f6-5a47-4597-9a23-c7d01e696b92/preview",50 "audio_video_sync": true51 }52}
1from signalwire.rest import RestClient23client = RestClient(4 project="your-project-id",5 token="your-api-token",6 host="your-space.signalwire.com",7)89conf = client.video.conferences.get("conference-id")