Updating a Room

Below is a list of available parameters for updating room:

Parameter
Type
Required
Default
Description

name

string

No

null

Room name

lang

string

No

null

Room session language code(see)

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

options

No

null

Room session options(see)

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?