getuserreport strange behavior

This API call

 

curl -X POST -H “Content-Type: application/x-www-form-urlencoded” -d ‘api_key=<my_key>&api_secret=<my_secrey>&user_id=RApq1KwpS0SwYmzmXmzdWg&from=“2017-08-24T15:27:20Z”&to=“2017-08-27T15:27:20Z”’ “https://api.zoom.us/v1/report/getuserreport

 

Gives this response:

{“from”:“2017-08-28”,“to”:“2017-08-29”,“page_count”:1,“page_number”:1,“page_size”:30,“total_records”:1,“meetings”:[{“id”:744115681,“topic”:“Engineering Standup”,“start_time”:“2017-08-28T16:20:05Z”,“end_time”:“2017-08-28T17:21:40Z”,“duration”:62,“total_minutes”:109,“participants”:[{“name”:“Dan Greff”,“join_time”:“2017-08-28T16:20:05Z”,“leave_time”:“2017-08-28T17:21:40Z”},{“name”:“Patrick”,“join_time”:“2017-08-28T16:35:14Z”,“leave_time”:“2017-08-28T17:21:39Z”}]}]}

 

Notice that the ‘from’ and ‘to’ in the response don’t match what was passed in the APi call. I think you should be returning {“error”:{“code”:403,“message”:“Sorry, the maximum number of user report api requests every day are already reached. Please try again next day.”}}, but instead you are giving me what I got on my last successful call. Usually I get the error message (correctly) but sometimes I get the faulty result.

 

I’ll appreciate any help.