Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
KarenCu
5 years agoExplorer | Level 4
Dropbox API's Files.ListFolderAsync return path not found
hi everyone,
We have dropbox's enterprise account and a team admin to grant consent permission to DropBox's Enterprise application.
In this dropbox's enterprise, we have a team folder "Design D...
- 5 years ago
You can make this call like this:
Feature feature = Feature.HasTeamSharedDropbox.Instance; FeaturesGetValuesBatchArg featuresGetValuesBatchArg = new FeaturesGetValuesBatchArg(new List<Feature> { feature }); FeaturesGetValuesBatchResult featuresGetValuesBatchResult = await client.Team.FeaturesGetValuesAsync(featuresGetValuesBatchArg);Hope this helps!
KarenCu
5 years agoExplorer | Level 4
Hey Greg-DB, thanks for the response. It looks like we weren't dealing with the difference between team spaces and team folders. I'm now trying to use the FeaturesGetValuesAsync method to handle these different cases, and I'm having an issue passing through a FeaturesGetValuesBatchArg. I'm sure I'm missing something really obvious here, but when I try and create a list of features, they end up with nulls.
HasTeamSharedDropbox feature = new Feature().AsHasTeamSharedDropbox; #this is null
FeaturesGetValuesBatchArg = new FeaturesGetValuesBatchArg(new List<Feature>(feature));
Can you point out what I'm doing wrong here? Thanks!
Greg-DB
Dropbox Community Moderator
5 years agoYou can make this call like this:
Feature feature = Feature.HasTeamSharedDropbox.Instance;
FeaturesGetValuesBatchArg featuresGetValuesBatchArg = new FeaturesGetValuesBatchArg(new List<Feature> { feature });
FeaturesGetValuesBatchResult featuresGetValuesBatchResult = await client.Team.FeaturesGetValuesAsync(featuresGetValuesBatchArg);
Hope this helps!
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
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, Facebook or Instagram.
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!