Getting the zoom meeting details with external users outside my account

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.

1 Like

@zoom_dev1 Hope you will be fine.

Please bind Zoom Meeting WebHooks

meeting.created
meeting.updated
meeting.deleted

And keep sync your db with PrimaryKey as meeting_uuid and every time you need meeting details fetch from your server to the app.

Hope that answers, ask if still any query.

Thanks