I would like to use JWT auth to allow my users to register their public Zoom meetings with my app. I want to store the meeting details and register for hooks on those meetings for when they are updated/canceled or started/ended. Is this possible with JWT?
I am having the same problem here, I just want to call an API which can return if the meeting exists or not.
People can already check this for arbitrary meeting ID by go to zoom.us/j/<meetingid>, so such info (if a meeting exists or not) shouldn’t have extra requirements.
But when I am using this “/meetings/<meetingid>” API, if the meeting id is not hosted by me, it will return 404, if it is my host, it will return 200
Why this API requires the meeting ID must be hosted under my account? Then I guess there is no way to see if an arbitrary meeting ID exists or not?
Hi Tommy, thank you for the response. I understand “due to privacy”, but the fact is, I can already check if a meeting ID is valid or not by just going to browser and entering the url like zoom.us/j/<meeting id> , then in the web page, it will literally show me "Invalid meeting ID. (3,001) "
In fact, if I just get the content of the page and search for “Invalid meeting ID”, it will tell me anyway, for example, in Python:
I do understand that flow you are mentioning, however it is an error message to inform a user of a possible mistake on their end, not an endpoint to check if a meeting exists.
Please share your use case so I can help come up with a different solution.
Thank you for the response. My case is, I am making a similar page like zoom.us/j/<meetingid> page, instead of showing the “Join from browser” link on the page, (because this meeting id is typed by user) I want to check first if this meeting id exists or if this meeting has been created, or if this meeting has ended (i.e. all cases for a meeting that is not available to join): if it is invalid / doesn’t exist, I won’t show the “Join from browser” link, instead, I’ll show “This meeting doesn’t exist or hasn’t started yet or has expired, etc”
I am wondering is there any API allow me to do this?
If you are trying to check if an external Zoom meetings exist, you could create an OAuth app, which your users install, then you can check if said meeting exists by querying the get meeting/meetings endpoint.
Other than that, there is no way to check if a meeting exists without authorization.