I have built an app using the Zoom appsdk. Inside it I want to use the running zoom meetings details to do some business logic. Currently I am using the ZoomSdk.getMeetingJoinUrl() to get the zoom meeting url and do an API call to fetch details for this meeting. This is working fine but only with internal users.
Is there any other way to get the zoom meeting details that can be used for external users as well? One way I have thought is by storing the zoom_meeting_uuid in my Meetings schema and using ZoomSdk.getMeetingUUID() which is accessible by external users as well to get the meeting details.