I am trying to track when a specific (local to us) user has joined a zoom meeting.
We are creating instant meetings over the API whenever a host launches it. We want to allow multiple, unanticipated people, to be able to just click a join button on our site to just go straight into the meeting. This all works fine.
We have a particular user though that we need to mark a flag when they’ve joined the meeting. I’m trying now to utilize the registrant create API call, as it sounds like that can return a unique join_url to enable this matching: https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingregistrantcreate
The response I get though is:
(
[code] => 300
[message] => This meeting has not registration required: 309841423
}
Can you help me understand the requirements for using this method or if there may be any other methods for performing this method?