Description
When querying the API endpoint below, data returned is only for 1 month instead of the requested 6 months.
Unlike the “User call logs endpoint”, which mentions that you must query in 1 month increments, this endpoint does not mention this limitation.
The request made on Feb 1st was:
GET https://api.zoom.us/v2/phone/call_logs?from=2020-08-01&to=2021-02-01
The response data appears like the following, and indicates that it’s only retrieving data from 2021-01-01 to 2021-02-01:
{“next_page_token”:"*******",“page_size”:30,“total_records”:4932,“from”:“2021-01-01”,“to”:“2021-02-01”,“call_logs”:[{“id”: … records listed here …}]}
Is there something I’m doing wrong here? Perhaps we’re requesting data too close to the 6 month mark, or perhaps the data must be requested sections of 1 month at a time?