Unable to get “join_url” value in Add meeting registrant API Response. The meeting I created is a “Manual” approval mode meeting… In that case, I read the API documentation and it is said that it wont pass this info back to the caller… It will only send this info to the actual email id registered to the meeting…
However, we need this info as most of our users come to our system before joining to the meeting… So, we need this join_url sent in the Add Regsitrant API response…
Is there any other way to get this data after successfully adding the registrant to the meeting?
If there is a workaround to disable the public registration page, that solves the problem for us to an extent. This is because now I can change the user registration approval mode to “AUTO”… In that mode, the registration API does send the “join_url” back to the caller…
If you have manual approval on for registration, the registrant will be pending until they’re approved, which is why the join_url is not returned in the Add Meeting Registrant response in this case. Once they’re approved, you can retrieve the join URL for the registrant via this endpoint:
Thanks @will.zoom. This means that we have to get the URL by loading all recipients for every approval and then search for this emailid on the response which will time consuming, if we have 100’s of participants for every meeting…
There is no other API which will take a meeting id and participant email or id and return only that specific user’s data after approval… Is that correct?