Can I use the API to find a specific Zoom meeting recording?
We have the Zoom integration installed so that Zoom sessions are recorded and transferred to Panopto.
Our Zoom meetings are created for users via the Zoom API based on requirements taken from another system.
Is there a way to find the Panopto recording of a Zoom meeting using the Panopto API? In Panopto the Description of the recording include information about the Zoom meeting, including the numeric ID but I can't find any way of accessing this.
Thanks!
Best Answer
-
Kevin Baum Panopto Employee
Hi John,
We don't directly have a way to look up a session by Zoom meeting ID, but you should be able to use our search endpoint to search for the meeting ID in the description. You can use either of the following APIs to search for the meeting ID in a session's description:
REST: /api/v1/sessions/search (Session Search Endpoint)
SOAP: SessionManagement.GetSessionsList endpoint
As Hiroshi mentioned above, please do note that we may change the format of the meeting ID in the description in the future. You may need to adjust your logic to search for a session by meeting ID in the future, if you use this method.
Please let me know if you have any other questions.
Thanks,
Kevin
5
Answers
Hi John,
Thank you for asking this question.
Description field can be read by both REST API and SOAP API.
REST: see the response of /api/v1/sessions/{id} as an example. "Description" field exists.
SOAP: see Session class which is returned by session related API, like GetSessionById. Description property exists.
Note that Panopto continues to put meeting ID in the description field, but the string format may be changed in the future to optimize the readability. Please be ready to adjust the logic if you rely on the description field.
Hi Hiroshi,
So to read the description I have to know the session ID?
What I'm trying to do is to find the Panopto recording for each of our organisation's recorded Zoom meetings to build a lookup table. This is for a server application rather than something used by individual users. I can't find anything in the REST API documentation which supports this.
Regards,
John.
Thank you, that does indeed work as required.