/bubble-tutorials

How to integrate Zoom in Bubble

Learn how to integrate Zoom in Bubble with simple steps, setup tips, and best practices to streamline video meetings in your app.

Matt Graham, CEO of Rapid Developers

Book a call with an Expert

Starting a new venture? Need to upgrade your web or mobile app? RapidDev builds Bubble apps with your growth in mind.

Book a Free Consultation

How to integrate Zoom in Bubble

The simplest and most reliable way to integrate Zoom in Bubble is to use Zoom’s REST API through Bubble’s API Connector. You authenticate with Zoom using OAuth 2.0 so users can connect their Zoom account, and then you call Zoom endpoints (like “Create Meeting”) from backend workflows or page workflows.

 

What You Need

 

  • A Zoom account with “App Marketplace” access
  • A Zoom OAuth App (created inside marketplace)
  • Bubble’s API Connector installed

 

Step-by-step Overview

 

You create a Zoom OAuth App inside Zoom → copy your Client ID and Client Secret → configure OAuth in Bubble API Connector → allow the user to “Connect to Zoom” → use the access token to call endpoints such as “Create Meeting”.

 

Create Zoom OAuth App

 

  • Go to https://marketplace.zoom.us
  • Create an OAuth app (not JWT)
  • Set Redirect URL: your Bubble app’s OAuth redirect such as https://yourapp.bubbleapps.io/api/1.1/oauth\_redirect
  • Copy Client ID + Secret

 

Configure API Connector

 

Add a new OAuth2 User-Agent Flow API. This lets each user connect their own Zoom account.

 

{
 "Authorize URL": "https://zoom.us/oauth/authorize",
 "Token URL": "https://zoom.us/oauth/token",
 "Client ID": "YOUR_CLIENT_ID",
 "Client Secret": "YOUR_CLIENT_SECRET",
 "Scope": "user:read meeting:write meeting:read"
}

 

After saving, click “Initiate OAuth flow” to confirm it works. Bubble will store access_token and refresh_token automatically.

 

Create a Meeting (Core Action)

 

Add a call in API Connector:

{
 "Method": "POST",
 "URL": "https://api.zoom.us/v2/users/me/meetings",
 "Headers": { "Authorization": "Bearer <Access-Token>" },
 "Body (JSON)": {
   "topic": "Test Meeting",
   "type": 1
 }
}

 

Use “Use as: Action” so you can trigger it in workflows (ex: button “Create Zoom Meeting”). Bubble will inject the stored OAuth token.

 

Store Meeting Info in Bubble

 

  • Meeting URL returned by Zoom is in the field join\_url
  • Save it to your Meeting data type
  • Send it to the user by email or show it on the page

 

Best Practices

 

  • Always run Zoom API calls in backend workflows for reliability.
  • Make sure your App is “Activated” in Zoom Marketplace.
  • If token errors occur, re-run OAuth authorization.

Explore More Valuable No-Code Resources

How to integrate Bubble.io with Git?

Learn how to seamlessly integrate Bubble.io with Git through our comprehensive step-by-step guide. Perfect for beginners and professionals.

Explore

How to integrate Bubble.io with Reddit Ads?

Learn how to seamlessly integrate Bubble.io with Reddit Ads using our easy step-by-step guide. Boost your ad management today!

Explore

How to integrate Bubble.io with AWS S3?

Explore our step-by-step guide on integrating Bubble.io with AWS S3, making your app development process more efficient and secure.

Explore

How to integrate Bubble.io with Lucidchart?

Follow our step-by-step guide to seamlessly integrate Bubble.io with Lucidchart, enhancing your workflow & productivity.

Explore

How to integrate Bubble.io with Kentico?

Learn how to seamlessly integrate Bubble.io and Kentico with our comprehensive, easy to follow step-by-step guide.

Explore

How to integrate Bubble.io with Box?

Discover easy-to-follow steps for integrating Bubble.io with Box. Boost your workflow and secure your files seamlessly today.

Explore

Stuck in Bubble.io? We’re here to help!

Fix broken workflows | Optimize logic | Boost performance | Scale with confidence

4.9
Clutch rating 🌟
600+
Happy partners
17+
Countries served
190+
Team members

By clicking “Accept”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. View our Privacy Policy for more information.

Cookie preferences