Skip to content

v0.16.6

Compare
Choose a tag to compare
@NarmadaRavali NarmadaRavali released this 17 Oct 21:21
· 16 commits to master since this release

Updated

createBreakoutRooms

Data Input changes:

numberOfRooms: number, Amount of breakout rooms to create. Between 1 and 50. Optional if names is present

names: String[], List of names to give breakoutrooms upon creation. Between 1 and 50. If numberOfRooms is present, must match the length of this list. Added in client version 5.12.6

Data Outputs: no changes

Error & status handling

Fails if numberOfRooms and names are provided, but number of names doesn't match the requested number of rooms

onMeetingConfigChanged

Event types updated:

breakoutRoomsCreated:Breakout rooms are created in Zoom UI or by “createBreakoutRooms”.

additional parameters:

breakoutRoomUUIDs: list of breakout room identifiers

breakoutRoomsChanged:There are changes in the rooms list by Zoom UI or by methods “addBreakoutRoom“, “deleteBreakoutRoom”, ”renameBreakoutRoom“.

additional parameters:

change: "added","deleted","renamed"

breakoutRoomUUIDs: list of breakout room identifiers that were changed (added, renamed, deleted)

breakoutRoomParticipantsAssigned:By Zoom UI or by method “assignParticipantToBreakoutRoom”.

additional parameters:

breakoutRoomUUID: id of breakout room that has new participants

participantUUIDs: list of particiants assigned to the room

NOTE: depends on user permissions, ordinary participants do not get this list

breakoutRoomParticipantsJoined:Participants joined a breakout room using Zoom UI, or by method “changeBreakoutRoom”.

additional parameters:

breakoutRoomUUID: id of breakout room that has new participants

participantUUIDs: list of particiants joined to the room

NOTE: depends on user permissions, ordinary participants do not get this list

breakoutRoomParticipantsLeft:Participants left a breakout room using Zoom UI, or by method “changeBreakoutRoom”.

additional parameters:

breakoutRoomUUID: id of breakout room that participant have left

participantUUIDs: list of particiants joined the main room

NOTE: depends on user permissions, ordinary participants do not get this list

Fixed

  • Fixed breakoutrooms role-based permissions documentation.