Updating a Room
Parameter
Type
Required
Default
Description
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",
"inaccessible_replay": true,
"room_hosts": ["<user_guid_1>", "<user_guid_2>"]
"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
}
}'Last updated