Https://api.zoom.us/v2/metrics/webinars returning empty

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?

Hi @cs_eds_data ,

What query string parameters are you passing through this request?

Sure!

I am waiting on the engineer to send me over the headers from his request but this is what I see from the screenshot for the URI:

https://api.zoom.us/v2/metrics/webinars?from:2023-04-14&type=past&to=2023-05-08&page_size=300

Hi @cs_eds_data ,

Were you able to get that info from the engineers?

Additionally, please try grouping the ‘to’ and ‘from’ query parameters together as opposed to having type=past sandwiched between them. It should look something like this:

{{baseUrl}}/metrics/webinars?type=past&from=2023-01-01&to=2023-01-28&page_size=30