Thank you for your response.
I also apologize for the delay in replying.
We are building a conference reservation system using ZoomAPI.
There are 8 types of ZoomAPI that we plan to use.
1.Get a meeting (Light)
2.Create a meeting (Medium)
3.Update a meeting (Light)
4.Delete a meeting (Light)
5.Get a user (Light)
6.List user assistants (Medium)
7.Add assistants (Medium)
8.Delete user assistants (Light)
Example of use)
・When the reservation button is clicked from our system, ZoomAPI (Create a meeting) is called and a Zoom meeting is created.
・When the “Open” button is clicked from our system, ZoomAPI (Get a meeting) is called and the Zoom meeting is started.
However, due to limitations of ZoomAPI, an error code may be returned when calling ZoomAPI.
The two we are aware of are as follows.
(1) The maximum number of API connections per user is 100 connections per day.
If the limit is exceeded, API calls cannot be performed until the call count is reset at 9:00.
( Rate limits)
(2) The refresh token is valid for 90 days, and when it expires, ZoomAPI will not be available unless the application authentication is performed again.
( ユーザー承認済みアプリの OAuth)
Are there any other restrictions other than the above that prevent the use of ZoomAPI due to ZoomAPI restrictions?
If there are other restrictions, we need to design our operations to accommodate them.