I want my web app to allow users to create Zoom meetings using their own Zoom account from within my web app. I also want to get reports on how the feature is being utilized by getting data of those Zoom meetings.
Basically I am interested in the POST /users/{userId}/meetings
and GET /report/meetings/{meetingId}
endpoints.
From what I understand, is that if I use a user-level oauth app I will be able to allow users to create Zoom meetings from within my web app using their own Zoom accounts, but I will not be able to use the GET /report/meetings/{meetingId}
endpoint.
And if I use an account-level oauth app I will be able to get reports on meetings, but I will not be able to allow users to create Zoom meetings from within my web app using their own Zoom accounts.
Is this correct?