API Endpoint(s) and/or Zoom API Event(s)
Description
After a recorded zoom meeting finishes and the recording is processed, we want to surface any number of recordings that occurred in that meeting ID using the “play_url ”.
How To Reproduce
To solve this, we experimented with 2 endpoints over the zoom api.
1. Get meeting recordings
This endpoint only shows the most recent recording “play_url”, and omits the past recordings for the same meeting (despite the docs suggesting “Use this API to return all of a meeting’s recordings”). Problem: We want to surface all recordings, even past ones for the same meeting.
2. List all recordings
This endpoint successfully fetches all recordings for a host user (this gets us all event meeting recordings in our use case, because each event generates a single host user), but does not provide the recording password alongside the “play_url”, which is an essential element to accessing a recording. Problem: We need the recording password sent over, so that we can redirect to the zoom recording viewer interface.
Is there anything we’re missing that would allow us to access all recordings with all relevant passwords over the API using the “join_url”, or would you have other recommendations?