Choose which breakout room to join

Hello @carson.zoom @Michael_Condon,

With the zoom official client, users can select which breakout room they want to join. I don’t see how I can do it with the mobile SDK. Can you help me with this?

Best regards,
Nicolas

Hey @nicolas.bonnet,

Thanks for using the dev forum! It is nice to see you again :slight_smile:

The short answer is that there is not currently an interface to do this. The long answer is you may be able to do it through a series of workarounds.

If the user is not a normal participant (host/co-host), they are eligible for DataHelperRights. Through the MobileRTCBOServiceDelegate, there is a callback onHasDataHelperRightsNotification that will provide a MobileRTCBOData object that can be used to list the meetings: getBOMeetingIDList. A breakout room admin can assign a user to a BO room by the user’s ID and BO meetingID. A non-participant-level user can also call getDataHelper on the MobileRTCMeetingService to get this object.

Thanks!
Michael