Just started with Zoom webinars. Apologies in advance if this is not the place to ask about/report bugs.
I created a recurring meeting with the Web UI. I scheduled the meeting for the first Thursday of every third month (beginning in April). I then used the Web API Playground (as well as a local copy of CURL) to get a list of all Scheduled Webinars:
https://api.zoom.us/v2/users/MV-XXXXXXX/webinars?page_size=30&page_number=1&access_token=XXXXXX
The curl request returned this (some data redacted):
{“page_count”:1,“page_number”:1,“page_size”:30,“total_records”:1,“webinars”:[{“uuid”:“XXXXX”,“id”:57XXXXX,“host_id”:“MV-t6XXXXXX,“topic”:“Introduction to Night Photography”,_ “type”:9 _,“start_time”:” 2019-10-04 T01:00:00Z",“duration”:60,“timezone”:“America/Los_Angeles”,“created_at”:“2018-03-26T21:22:18Z”,“join_url”:“https://zoom.us/j/57XXXXX”}]}
Notice that it says 2019-10-04 which would be the LAST occurrence of the entire series.
I then edited the webinar by deleting the last two individual meetings. Redoing the curl request I got this:
…
“start_time”:“2019-04-05T01:00:00Z”,“duration”:60,“timezone”:“America/Los_Angeles”,“created_at”:“2018-03-26T21:22:18Z”
Notice how it’s now returning the FIRST/next meeting as I expected - though I’m not sure why it’s only ONE meeting listed.