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