Zoom Meeting SDK for Web
    Preparing search index...

    Function createBreakoutRoom

    • Host and co-host create breakout rooms.

      Parameters

      • args: {
            data: string | number | string[];
            error?: Function;
            pattern?: BreakoutRoomAllocationPattern;
            success?: Function;
        }
        • data: string | number | string[]

          data: number | string | Array. Three types of parameters:

          • number : the number of rooms to create. The specified number of rooms will be created and the room will be automatically named.
          • string : the name of the room. The specified name of room will be created.
          • Array: list of room names. The specified rooms will be created.
        • Optionalerror?: Function

          Callback function in the event of an error.

        • Optionalpattern?: BreakoutRoomAllocationPattern

          pattern BreakoutRoomAllocationPattern; How to assign the participants to the rooms. Default is Manually

          • BreakoutRoomAllocationPattern.auto: Distribute participants evenly to each room.

          • BreakoutRoomAllocationPattern.manually: Assign participants manually later.

          • BreakoutRoomAllocationPattern.selfSelect: Participants will choose the room to join.

          • Room List: success

          • Errors:

            • INVALID_OPERATION (breakout room has started!)
            • INVALID_PARAMETERS (exceed maximum size): maximum_size = 50; if support big rooms plan, up to 100
        • Optionalsuccess?: Function

          Callback function on success.

      Returns void