Start 2025 on time and up to date! Seamlessly integrate your calendars into Dropbox with these simple steps! 📆

Forum Discussion

Boris22's avatar
Boris22
Explorer | Level 3
9 years ago
Solved

Get Quota/ vb.net DropboxClient API

Hi,    since one year i use a small "tool" to upload my files to DB periodically. Getting used space works fine too, but how can i request the total quota / remaining free space? Dim box = Await...
  • Greg-DB's avatar
    9 years ago

    The GetSpaceUsageAsync method gives you a SpaceUsage object, which has Used (the amount of space used) and Allocation (the total storage quota) properties for the user.

     

    So, you can do something like this (depending on account type):

     

    var space = await this.client.Users.GetSpaceUsageAsync ();
    Console.WriteLine ("{0}/{1}", space.Used, space.Allocation.AsIndividual.Value.Allocated);

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,936 PostsLatest Activity: 4 hours ago
347 Following

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!