In order for you to do this, you should use the OAuth 2.0 method of Authentication. I am assuming that you are using JWT currently, which will not work, since the user is not listed under your account.
In order for you to use JWT authentication, the user in question must be listed under your account.
Since you’re using OAuth, you are effectively authenticated as the user. In this case you should use the me context in the URL: https://api.zoom.us/v2/users/me/meetings
In order to be able to schedule meetings on behalf of users not belonging to your account, you would need to have your OAuth App published on our marketplace. Otherwise, it’s only accessible to your account.
If you’d like to be able to access users outside of your account via OAuth, you can find our submission process for this outlined here.
Hello, I want to create a meeting over my local python application that I wrote using api like a friend. Then people use their own account information from their own computers.
I am creating an application for the api from the application creation section. Requests Redirect URL for OAuth. However, since my program is not web based, there is no Redirect URL for OAuth. What can I do in this situation.
Since the authorization portion of our OAuth flow takes place on the web, a redirect URL is required. However, this can be any URL — you can test this with https://zoom.us for example. You just need a URL that you will grab the appended authorization code from after the user authorizes your app.