Skip to main content
Connect your Zoom account to use your cloud meeting recordings with Cloudglue APIs.

Adding the Zoom Data Connector

  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
Ready to set up your data connector? Visit our app to configure your Zoom connector.

Using the Zoom Data Connector with Cloudglue APIs

Cloudglue accepts multiple URL formats to reference 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. Cloudglue uses a URL encoded UUID.

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:
Note: When using a meeting instance UUID, you must URL-encode it (for example, using encodeURIComponent() in JavaScript). The example below shows the encoded form on the left, and the code used to generate it on the right.
zoom://uuid/QFwZYEreTl2e6MBFSslXjQ%3D%3D # zoom://uuid/${encodeURIComponent("QFwZYEreTl2e6MBFSslXjQ==")}
Example API Request to get a multimodal description of a recording:
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%3D%3D",
  "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.

UI Importing for Testing

For your convenience, we have a integration with Zoom that you can use to quickly import files directly from your Zoom account into Cloudglue using our UI. This is useful for quickly testing your endpoints with files from Zoom.
This UI tool only supports importing files from the Zoom account that you have connected to Cloudglue. This will not show recordings for the organization that you are a member of. If you need to use files from the organization, you can use the API to import the files.
File Chooser To access this page, visit our app and click on Quick Import under the Zoom connector. Quick 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

Removing the Zoom Data Connector

To remove the Zoom Data Connector, visit the Data Connectors page and click Disconnect under Zoom. Alternatively, you can also remove the connector by logging in at https://marketplace.zoom.us and going to Manage -> Added Apps -> Cloudglue Zoom Importer -> Remove. Once removed:
  • You cannot import new recordings into Cloudglue until you reconnect
  • Any recordings you previously imported will remain in Cloudglue. These can be viewed and deleted from File Management.