When attempting to create a new Zoom meeting with breakout rooms using the following payload:
{
"agenda": "My Meeting",
"duration": 120,
"settings": {
"breakout_room": {
"enable": true,
"rooms": [
{
"name": "Room 1",
"participants": [
"email@example.com",
"email@example.com"
]
},
{
"name": "Room 2",
"participants": [
"email@example.com",
"email@example.com"
]
},
{
"name": "Room 3",
"participants": [
"email@example.com",
"email@example.com"
]
}
]
},
"meeting_authentication": true,
"private_meeting": true,
"internal_meeting": true,
"waiting_room": true,
},
"start_time": "2024-10-21T16:13:00",
"timezone": "America/Sao_Paulo",
"type": 2
}
The meeting is created successfully, but upon reviewing the response, the "breakout_room": { "enable": false }
is returned, even though "enable": true
was specified in the request.
After participants join the meeting, they are directed to the main room instead of being automatically assigned to the specified breakout rooms. As a result, I have to manually create the breakout rooms during the meeting.
Could someone please assist with ensuring that the breakout rooms are automatically created and participants are assigned as per the payload?