Hello Zoom support community,
I know things have changed a bit since with the some policies within the Zoom API and I apologize in advance if I bring up an issue already mentioned elsewhere.
Description
I am looking for assist with a couple issues I am experiencing with the GET /report/cloud_recording API call.
I recently started collecting the data from this API and have found the follow issues:
-
Missing results
a. Some dates are completely missing from the results. Most recently 9/1/2020 is missing
GET https://api.zoom.us/v2/report/cloud_recording?from=2020-08-31&to=2020-09-03
{
“cloud_recording_storage”: [
{
“date”: “xxxx”
“free_usage”: “xxxx”,
“plan_usage”: “xxxx”,
“usage”: “xxxx”
},
{
“date”: “2020-09-02”,
“free_usage”: “xxxx”,
“plan_usage”: “xxxx”,
“usage”: “xxxxx”
}
],
“from”: “2020-08-31”,
“to”: “2020-09-02”
} -
Some results have from previous dates have new values for the usage. In the below case we see both the Plan_usage and the Usage are dramatically out of sync and seems more inline with our current usage. Values changed for security
GET https://api.zoom.us/v2/report/cloud_recording?from=2020-05-10&to=2020-06-09
{
“date”: “2020-06-02”,
“free_usage”: “10 GB”,
“plan_usage”: “0”,
“usage”: “2.25 GB”
},
{
“date”: “2020-06-03”,
“free_usage”: “10 GB”,
“plan_usage”: “3 GB”,
“usage”: “12.25 GB”
},
{
“date”: “2020-06-04”,
“free_usage”: “10 GB”,
“plan_usage”: “0”,
“usage”: “2.97 GB”
}, -
Is there any way to get higher precision on usage? 1.21 TB versus 1211 GB or 1211463 MB
-
What calculation does your system use for TB, GB, etc? TB = 1024^ 4 or 1000 ^4?
Thank you in advance for any insight you might have,
Sean