/bubble-tutorials

How to integrate Zoom meetings in Bubble

Learn how to integrate Zoom meetings in Bubble with simple steps, API setup tips, and smooth scheduling for your no-code 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 meetings in Bubble

The simplest, stable way to integrate Zoom with Bubble is to use Zoom’s Server‑to‑Server OAuth app (Zoom removed JWT). You create the app in Zoom, copy the credentials, plug them into Bubble’s API Connector, and then call Zoom’s Create Meeting endpoint from a backend workflow. Bubble will then receive Zoom’s meeting ID, join URL, and start URL, which you can display or save in your database.

 

Create the Zoom Server‑to‑Server OAuth app

 

  • In your Zoom account go to Develop → Build App → choose Server‑to‑Server OAuth.
  • Copy Account ID, Client ID, Client Secret.
  • Under Scopes, add meeting:write and meeting:read.

 

Set up Bubble’s API Connector

 

  • Add a new API and enable OAuth2 Custom Token (Zoom uses a token URL).
  • Auth token endpoint: https://zoom.us/oauth/token?grant_type=account_credentials&account_id=YOUR_ACCOUNT\_ID
  • Client ID and Client Secret → paste from Zoom.

 

// Zoom Create Meeting API call setup
{
  "method": "POST",
  "url": "https://api.zoom.us/v2/users/me/meetings",
  "headers": {
    "Content-Type": "application/json",
    "Authorization": "Bearer <dynamic access token>"
  },
  "body": {
    "topic": "Demo Meeting",
    "type": 1
  }
}

 

Trigger Zoom meeting creation from Bubble

 

  • Create a Backend Workflow called “create_zoom_meeting”.
  • Action → API Connector → run your “Create Meeting” call.
  • Save returned fields (join_url, start_url, id) into a data type like Meeting.

 

Use the meeting in your app

 

  • On a button click in the UI → schedule the backend workflow and pass needed info.
  • Display the join\_url to the user or send it via email.

 

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