My simple issue is the correct format of adding to breakout rooms
await zoomSdk.assignParticipantToBreakoutRoom(options);
what is the format of options and an example please of the payload would be great.
there is no example.
ther error is
Error: Validation error, please check API parameters.
Ok i fixed this and leave becuase the answer is not expected.
Zoom passed back the breakoutroomid as an array.
What is a surprise is you need to do that for this function.
const options = {
// uuid: breakoutRoomId, // The breakout room ID
participant: participantId // This is the preferred field over participantUUID
};
const result = await zoomSdk.assignParticipantToBreakoutRoom(options);