We are developing an APP to fetch an user’s past meetings/webinars, which should include both instant and scheduled meetings.
currently, we found two available end points:
API 1: /users/me/meetings:
https:// developers .zoom.us/docs/api/meetings/#tag/meetings/get/users/{userId}/meetings
API 2: /report/history_meetings:
https:// developers .zoom.us/docs/api/meetings/#tag/reports/get/report/history_meetings
API 1 does not work for us, because it explicitly said it does not show instant meetings. When we check API 2, it does not mention anything about instant/scheduled meetings.
So our question is that , does API 2 return both instant and scheduled meetings?
Or maybe there is another API end point can do what we need?