In reference to the API endpoint: /1/team/reports/get_storage
[ documentation: https://www.dropbox.com/developers/business/docs#reports-get-storage ]
The returned results include “total_usage”, “shared_usage” and “unshared_usage" do I assume correctly they are bytes?
So “shared_usage” + “unshared_usage” = “total_usage”? (this tests true, but we have limited data there at the moment)
(example api response below)
{
"total_usage": [
692088,
692088,
692088,
1391187,
1738193,
null
],
"member_storage_map": [
{
"100GB": 0,
"5GB": 0,
"25GB": 0,
"10GB": 0,
"4GB": 0,
"100+GB": 0,
"2GB": 0,
"50GB": 0,
"3GB": 0,
"1GB": 1
},
{
"100GB": 0,
"5GB": 0,
"25GB": 0,
"10GB": 0,
"4GB": 0,
"100+GB": 0,
"2GB": 0,
"50GB": 0,
"3GB": 0,
"1GB": 1
},
{
"100GB": 0,
"5GB": 0,
"25GB": 0,
"10GB": 0,
"4GB": 0,
"100+GB": 0,
"2GB": 0,
"50GB": 0,
"3GB": 0,
"1GB": 1
},
{
"100GB": 0,
"5GB": 0,
"25GB": 0,
"10GB": 0,
"4GB": 0,
"100+GB": 0,
"2GB": 0,
"50GB": 0,
"3GB": 0,
"1GB": 2
},
{
"100GB": 0,
"5GB": 0,
"25GB": 0,
"10GB": 0,
"4GB": 0,
"100+GB": 0,
"2GB": 0,
"50GB": 0,
"3GB": 0,
"1GB": 2
},
null
],
"shared_usage": [
0,
0,
0,
7011,
354017,
null
],
"unshared_usage": [
692088,
692088,
692088,
1384176,
1384176,
null
],
"shared_folders": [
1,
1,
1,
2,
4,
null
],
"start_date": "2015-09-01"
}