Zoom/Mediasite Integration

I have a simple OAuth app that imports Zoom recordings into Mediasite by Enghouse Video. While it generally functions correctly, it generates numerous 404 errors for impromptu (non-scheduled) meetings. Specifically, it seems that if a meeting is non-scheduled and recorded, the app repeatedly tries to GET the meeting ID, which doesn’t exist since it’s a non-scheduled meeting. This would be fine if it happened once, but the app continues to call the API for about 30 days. The app makes repeated GET requests for non-existent meeting IDs and the 404 errors persist for approximately 30 days.

Has anyone else encountered these issues before? I’m relatively new to developing Zoom Apps, and this setup was implemented before my tenure.

Hey @marafinom,

Which endpoint are you using to fetch the meeting? Certain endpoints like the List Meetings endpoint do not include instant meetings (only scheduled), and so one thing you might want to try is using the Get Past Meeting endpoint.

Depending on the use case/when you’re calling this endpoint, this is the recommended approach for getting any meeting details from a meeting in the past, including instant meetings.