Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
Omri1984
2 years agoExplorer | Level 4
Old dropbox and new dropbox API
Hi , i know that dropbox made a lot of changes in the last few years. i want to understand something there where a time that i needed to check the account , and check if the account is team in o...
- 2 years ago
Omri1984 The combination of the two features allows an app to distinguish between all three team configurations. Please refer to this post for information on that. The recommendation is use these feature values to programmatically determine how to handle any particular team, as described throughout that post.
Greg-DB
Dropbox Community Moderator
2 years agoOmri1984 Here's a basic example of how you can use the existing root information to determine the same information as the feature values using the .NET SDK:
var accountInfo = await this.client.Users.GetCurrentAccountAsync();
bool team_shared_dropbox = accountInfo.RootInfo.IsTeam;
Console.WriteLine("team_shared_dropbox: " + team_shared_dropbox);
bool distinct_member_home = accountInfo.RootInfo.RootNamespaceId != accountInfo.RootInfo.HomeNamespaceId;
Console.WriteLine("distinct_member_home: " + distinct_member_home);Omri1984
2 years agoExplorer | Level 4
Tjank you Greg-DB
So the first one is the old team and the second one is?
Can you share an exmple for all the 3 option.
And can we call then old team new team(space)
And personal.
That will be very helpful.
I need to fix mu production app and the time is critical for me .
- Greg-DB2 years ago
Dropbox Community Moderator
Omri1984 The combination of the two features allows an app to distinguish between all three team configurations. Please refer to this post for information on that. The recommendation is use these feature values to programmatically determine how to handle any particular team, as described throughout that post.
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!