Get all user recordings error with Start and end date

Here is what I have inputted into the api call

  • User ID or Email Address: me,
  • Start date: 2019-06-01,
  • End date: 2019-07-01

But here is the output:

  • Start Date: 2019-07-17,
  • End Date: 2019-07-18,

It is changing my start and end date to today and tomorrow automatically.

I am sending a get request to the following link
https://api.zoom.us/v2/users/{userId}/recordings

Not sure what is causing the date to automatically change.

Hey @nsullivan,

I was successfully able to get recordings with the dates you supplied and the dates did not change in the response,

GET https://api.zoom.us/v2/users/me/recordings?from=2019-06-01&to=2019-07-01

Can you send me your GET request URL so I can take a look?

Thanks!

@tommy The way our connector works is through Workato, a middleware tool. It looks like this.

Earlier in the code we define as the base request url to be:
"https://api.zoom.us"
and for this particular function we use:
get("/v2/users/" + input["userId"] + "/recordings")
Where the user can input their userId.
The user input of from and to looks like this
{ name: "from", label: "Start date", sticky: true}, { name: "to", label: "End date", sticky: true}
also it is defined elsewhere in the code as:
{ name: "from", label: "Start Date" }, { name: "to", label: "End Date" },

Hey @nsullivan,

I think you are passing in the to and from to the request body. It needs to be a query parameter.

I am unfamiliar with Workato, but double check you are passing the dates as a query parameter which goes in the url like this https://api.zoom.us/v2/users/me/recordings?from=2019-06-01&to=2019-07-01