Original publication date: October 20th, 2022
Updated
-
createBreakoutRooms
-
Data Input changes:
-
numberOfRooms
: number. Amount of breakout rooms to create. Between 1 and 50. Optional ifnames
is present. -
names
: String[]. List of names to givebreakoutrooms
upon creation. Between 1 and 50. IfnumberOfRooms
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 bycreateBreakoutRooms
.-
Additional parameters:
-
breakoutRoomUUIDs
: list of breakout room identifiers.
-
-
-
breakoutRoomsChanged
: There are changes in the rooms list by Zoom UI or by methodsaddBreakoutRoom
,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 methodassignParticipantToBreakoutRoom
.-
Additional parameters:
-
breakoutRoomUUID
: ID of breakout room that has new participants. -
participantUUIDs
: list of participants 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 methodchangeBreakoutRoom
.-
Additional parameters:
-
breakoutRoomUUID
: ID of breakout room that has new participants. -
participantUUIDs
: list of participants joined to the room. NOTE: depends on user permissions, ordinary participants do not get this list.
-
-
-
breakoutRoomParticipantsLeftParticipants
left a breakout room using Zoom UI, or by methodchangeBreakoutRoom
.-
Additional parameters:
-
breakoutRoomUUID
: ID of the breakout room that the participant left. -
participantUUIDs
: list of participants who joined the main room. NOTE: depends on user permissions, ordinary participants do not get this list.
-
-
-
-
Fixed
-
Fixed
breakoutrooms
role-based permissions documentation.