Zoom meeting integration in bubble

I’m trying to add Zoom video meeting to my app. I have set up my server-toserver OAuth app in zoom marketplace and my first api call in Bubble to generate access token. However, I’m stuck in initializing my second api call to create meeting. It keeps saying the access token is invalid. Here are the things I tried:

  1. Grabbed the access token from my first api call right after initializing it and use it in the second call.
  2. Left the Authorization blank and not private to make it dynamic.

I know I can use dynamic token through the workflow and a custom state, however I need to be able to initialize this call first in order to use it later. Here is how my api call looks like. Does anyone know how to make it work?

Maybe I’d look a bit into the zoom’s documentation to see how to solve this.

It’s not about Zoom, it’s about bubble and how to initialize the second API call.

What happens when you try to initialize the call? What does the error say?

If I keep Authorization blank I get undefined error: this header value for Authorization is not correct undefined.
But if I try to use the access token from my first API call, after reinitializing it again to refresh the token, I get: Status code 401 {"code":124,"message":"Invalid access token."}

Make sure you’re passing the token in the Authorization header as Bearer YOUR_ACCESS_TOKEN.