Greetings,
We are attempting to pull data from the following endpoint and running into some odd behavior:
https://api.zoom.us/v2/metrics/webinars
We are looking for past webinar data but it comes back like this:
{
from: “date”,
to: “date”,
page_count: 0,
page_size: 300,
total_records: 0,
next_page_token: “”,
webinars:
}
However when we run this endpoint we see data:
GET /metrics/webinars/
https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/dashboardWebinarDetail
WebinarID: 936 9037 8658
It has records from 2023-05-02, when we pass those dates into the original endpoint we still don’t get anything back.
How are we supposed to get webinar ID’s so we can iterate and pull the detailed data?