We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
KarenCu
4 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...
- 4 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
Explorer | 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
4 years agoDropbox Staff
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!
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 9 hours agoIf 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!