Is the authentication in this case JWT or OAuth?

Hi, sorry if this is a similar question.
I’m hoping to be able to use the following.
Please let me know what I need to prepare in this case.

Can additional users create, view, update, and delete meetings using the account owner’s API credentials?
(Please let me know if this is possible or not depending on the license such as Pro, Business, Enterprise, etc.)

(ex)

string apiKey = "OWNER_KEY...";
string apiSecret = "OWNER_SECRET...";

var connectionInfo = new JwtConnectionInfo(apiKey, apiSecret); // If it has to be OAuth, then you can change it.
var zoomClient = new ZoomClient(connectionInfo);

string user1 = "owner@example.com";
string user2 = "adduser@example.com";

ZoomNet.Models.ScheduledMeeting ret1 = await zoomClient.Meetings.CreateScheduledMeetingAsync(user1, needparams...); //Organizer: owner
ZoomNet.Models.ScheduledMeeting ret2 = await zoomClient.Meetings.CreateScheduledMeetingAsync(user2, needparams...); //Organizer: adduser

Hey @Takuya_Otake,

Thank you for reaching out to the Zoom Developer Forum. If you have a JWT token, that means that you have account level access so you would be able to use the Create a Meeting API for any user under your account.

Let me know if that answers your question.

Thanks,
Max

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.