GET /metrics/meetings by from='2023-06-01 01:00:00'&to='2023-06-06 01:00:00'

Description
GET /metrics/meetings by from=‘2023-06-01 01:00:00’&to=‘2023-06-06 01:00:00’

Error?
Unable to get data for from and to dates provided in the GET API

How To Reproduce
Steps to reproduce the behavior:

  1. Get Request
    https://api.zoom.us/v2/metrics/meetings?from='2023-06-01 01:00:00’&to=‘2023-06-06 01:00:00’

  2. No matter what date is provided n the from and to - always get current date in the response ?

{
“from”: “2024-04-25”,
“to”: “2024-04-26”,
“page_count”: 2,
“page_size”: 30,
“total_records”: 32,
“next_page_token”: “MKuAHT9S0fFtt8zE0HHbsYbIpD3gFd6sDT2”,
“meetings”:

@rsonicanada ,

The request can only be queried for a month that falls within the last six months.

Could you also take out the single quotes? Something like this should work

/metrics/meetings?from=2024-03-24 01:00:00&to=2024-03-28 01:00:00&type=past

Hi @chunsiong.zoomTHANKS for your help !!! This works.

Now I need one more favor. Is there any API in /metrics which can give me No of HOURS of zoom meting for given date for example from=2024-03-24 01:00:00&to=2024-03-28 01:00:00 no of HOURS of all Zoom calls or I will I have use above API get all meeting and and then ADD hours.

@rsonicanada you will probably need to calculate them yourself by adding the duration of each meetings

This topic was automatically closed 368 days after the last reply. New replies are no longer allowed.