Save Zoom Recordings in Google Drive

Hi Everyone,

I’m planning to use Webhook to send the Zoom Recording download URL to the endpoint which is a published web app under Google Script.

I already set up the Webhook app under zoom and get 200 Status.

Can you please give me some idea on how to validate the verification token? Also how to use the download_url and the download_token to save the recordings under Google Drive?

Thanks in advance.

Hey @zoomrecords,

Just validate the verification code in the request header with the verification code on the your app in the marketplace. Example in Node.js:

Attach the download_token as a query param in the download_url:

{download_url}?access_token={download_token}

And us it to upload it to google drive.

https://developers.google.com/drive/api/v3/manage-uploads

Thanks,
Tommy