How to Retrieve all zoom cloud recordings for a modified time range
Description
As I am trying to retrieve all the past zoom cloud recordings by using API: https://api.zoom.us/v2//users/{userId}/recordings which is available at zoom marketplace API reference but I am getting the meeting recordings of only one day. And I want to maximize it to at least one month. For that, I had modified the API as https://api.zoom.us/v2//users/me/recordings?from=“2021-05-05”&to=“2021-06-02” by adding a query string in it. But still unable to fetch all the cloud recordings list in this time frame.
My postman Get response looks like this:
{
“from”: “2021-06-01”,
“to”: “2021-06-02”,
“page_count”: 1,
“page_size”: 30,
“total_records”: 0,
“next_page_token”: “”,
“meetings”:
}
Any Solution and help in this matter (i.e. changes in API or something) would be appreciated.
Urgent
Which App Type ?
Using JWT Token
Want to know the necessary modifications in the above API to change the dates to and from params in order to get the response list of all the meetings in that duration.
Screenshots (If applicable)