Updating a Room
Below is a list of available parameters for updating room:
Parameter
Type
Required
Default
Description
name
string
No
null
Room name
tags
string
No
null
Room session tags. Separated by commas.
allow_recording
bool
No
null
Flag indicating that the room session recording will not be accessible
inaccessible_replay
bool
No
null
Flag indicating that the room session will be recorded
The name parameter must be unique for a room.
β οΈ All parameters are optional in the update operation. Only the sent parameters will be updated.
Example request
curl -L -X PUT 'https://<DOMAIN>/xapi/v2/room/:ROOM_GUID' \
-H 'Content-Type: application/json' \
--data-raw '{
"name": "Updated Room Name",
"lang": "en-US",
"tags": "test",
"allow_recording": false,
"inaccessible_replay": true,
"options": {
"allow_rating": false,
"preparation_time": 10,
"session_duration": 90,
"Chat": {
"OffMessageModule": true,
"OffGeneralMsging": false
},
"Duration": {
"AllowExtendTime": false,
"UseRemainingTime": true
},
"allow_users_stream_self_cam_mic": false,
"hide_user_streams": true,
"enable_attendance_check": false,
"allow_reactions": false
}
}'Example response
A successful update operation will return 200 OK with body including the following information:
Last updated
Was this helpful?