Hello there,
I am using the zoom API: https://zoom.us/oauth/token?grant_type=account_credentials&account_id=
with the body:
topic: ${host.name} will join you shortly,
type: 1,
password: meetingPassword,
duration: 90,
settings: {
waiting_room: false,
join_before_host: true,
approval_type: 1,
auto_recording: ‘none’,
meeting_authentication: false,
//host_video: false,
participant_video: true,
authentication_exception: [
{
name: host.name,
email: host.email,
},
{
name: guest.name,
email: guest.email,
}
]
},
As you can see I have allowed join before host and disabled waiting room, however when entering using the join URL after entering password, I am directed to the waiting room.
I have noticed that in the response I am getting join_before_host: false despite setting it to true both in the request body and my account settings
