Query parameter problem with '/metrics/meetings/{meetingId}/participants' endpoint

[Urgent] Posting this after finding all the related posts with ‘API and Webhooks’, ‘Meetings’ category and ‘api’ tag

API Endpoint(s) and/or Zoom API Event(s)

Description of background of problem
I’m working on building an attendance app using business account.
I needed some participants lists with join and leaving time during a specific period
And for the test, I set request from the client with query parameter like this:
…/metrics/meetings/{meetingId}/participants?type=past&from=from=2024-01-11&to=2024-01-16.

Problem(not working as I expedted)
But I got only one recent meeting participants data without ‘from’ and ‘to’ properties, which means that ‘from’ and ‘to’ query parameters didn’t work.

So I checked the API docs again and I’ve found something awkward thing.
Here is the one.


In the page which I put with link, it said with this API I could use ‘from’ and ‘to’ query parameters.

However, there is no specific description about how to use those query parameters.

Question
So here is my question.

Can I use ‘from’ and ‘to’ query parameter, or not?
If I can, how can I use?
If I can’t, is there another option to get participants lists with join and leaving time during a specific period?

It seems you might be making a mistake in your request:
&from=from=2024-01-11 , remove the duplicate from and I think it should work

It was my mistake when writing down the example of api path in the post.
Even when putting the correct path and query parameter, it doesn’t work.

@JasonY can you send the complete request you are making in cURL format?