I red a lot about current zoom APIs also. I tried creating new meetings with POST API(https://api.zoom.us/v2/users/{userId}/meetings). I am successfully able to create meetings. I do this from my server side with our paid account credentials. Here the host is my server and the participant can be anyone to whoever my server sends this meeting id details to.
But when I send the newly created meeting id to clientside for joining participants, they are not able to join. In the client side, I am using ZoomMtg.join() js API.
Participants getting an error with code 3008(Meeting not started).
How can a participant successfully join a meeting created this way?
I would like to ask why I set join_before_host to true in the request body settings.
I am using the web sdk , tried to join the meeting as a attendee but only get the error message " the meeting not started ".
So join_before_host does not work for role 0 in the setting ?
Is there any way that I can start a meeting without the host using the Ionic SDK?. I checked out the documentation but there is not option to set up the “role” in the joinMeeting method.