Conference Rooms
Update conference room
Updates a Conference Room by ID
Permissions
The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice, Messaging, Fax, or Video.
Learn more about API scopes.
put/api/fabric/resources/conference_rooms/{id}
Path parameters
idstring uuid required
Universal Unique Identifier.
Unique ID of a Conference Room.
Request body
Example request
{
"name": "coffee_cafe",
"display_name": "Reception",
"description": "This room is for coffee, no shop talk",
"join_from": "2024-05-06T12:20:00Z",
"join_until": "2024-05-06T12:20:00Z",
"max_members": 30,
"quality": "1080p",
"remove_at": "2024-05-06T12:20:00Z",
"record_on_start": true,
"enable_room_previews": true,
"meta": {
"foo": "bar"
},
"sync_audio_video": true,
"tone_on_entry_and_exit": true,
"room_join_video_off": true,
"user_join_video_off": true
}Response
The request has succeeded.
Example response
{
"display_name": "Reception",
"type": "video_room",
"created_at": "2024-05-06T12:20:00Z",
"updated_at": "2024-05-06T12:20:00Z",
"conference_room": {
"name": "coffee_cafe",
"description": "This room is for coffee, no shop talk",
"display_name": "Reception",
"max_members": 30,
"quality": "1080p",
"fps": 30,
"join_from": "2024-05-06T12:20:00Z",
"join_until": "2024-05-06T12:20:00Z",
"remove_at": "2024-05-06T12:20:00Z",
"record_on_start": true,
"tone_on_entry_and_exit": true,
"room_join_video_off": true,
"user_join_video_off": true,
"enable_room_previews": true,
"sync_audio_video": true,
"meta": {
"foo": "bar"
}
}
}