Skip to main content
Connect your Zoom account to Cloudglue to work with your meeting recordings

Setup

  1. Visit the Data Connectors page in the Cloudglue app
  2. Click Connect under Zoom Zoom Connector Architecture
  3. Authorize Cloudglue to access your recordings
  4. Start using your Zoom recordings with Cloudglue endpoints
Ready to set up your data connector? Visit our app to configure your Zoom connector.
Need help setting up your data connector? Contact our team directly for assistance with the setup process.

Managing Access

You maintain full control over your data access. To disconnect Cloudglue from your Zoom account, revoke the connector from the Data Connectors page.

How to use your Zoom recordings with Cloudglue

Cloudglue accepts multiple URL formats for accessing Zoom recordings. Zoom has two concepts:
  • Meeting ID - A numeric identifier for a meeting (can have multiple instances if recurring)
  • Meeting Instance UUID - A unique identifier for a specific meeting occurrence

Supported URL Formats

  • Meeting Instance UUID
  • Meeting ID
Retrieves the recording from a specific meeting instance. If multiple recordings exist, Cloudglue uses the longest one.Cloudglue URL format:
zoom://uuid/QFwZYEreTl2e6MBFSslXjQ==
Or use the Zoom recording detail URL:
https://zoom.us/recording/detail?meeting_id=QFwZYEreTl2e6MBFSslXjQ%3D%3D
Example API Request:
curl --request POST \
  --url https://api.cloudglue.dev/v1/describe \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "zoom://uuid/QFwZYEreTl2e6MBFSslXjQ==",
  "enable_summary": true,
  "enable_speech": true,
  "enable_visual_scene_description": true,
  "enable_scene_text": true
}'
Regardless of which URL format you provide, Cloudglue will automatically normalize it to a meeting instance UUID for processing.
Find your meeting instance UUID by going to Zoom Web → Settings → Recordings & Transcripts, then click on a recording to see the detail page URL.

Bulk Import

Import multiple recordings from Zoom into Cloudglue at once using the bulk import feature. Bulk Import Access bulk import from the Data Connectors page by clicking Bulk Import under the Zoom connector. Bulk Import Button

Security

Cloudglue uses Zoom OAuth to securely access your recordings with minimum required permissions. This approach:
  • Maintains your control - You own and manage the connector
  • Follows Zoom security standards - Uses OAuth with minimum permissions
  • Easy to revoke - Disconnect anytime from the Data Connectors page
I