Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
Hello,
I am using a dropbox app to get users dropbox content with APIs. It works fine with user personal account.
But, when I can't find a way to get content of a team shared folder.
Here an example:
So with ListFolderAsync I can access and get all folders and files inside the first folder which is personal user's drive.
For the second one which is a team shred folder, I can't find a way to get folder content.
The TeamFolderListAsync call is returning this shared folder with its Id but nor the content.
Is there any way to retrieve this team shared content with .Net SDK ?
Thank You
To do that you need to use WithPathRoot. By the way, team folder id is neither admin nor member id. That's why you got the error. 😉
Hi @borhene,
By default, all calls to access content are rooted to user/member folder (not to account root). On personal account, account root and user folder are the same thing, which is NOT the case for member of team account (seen on your screenshot too). To be able list something outside member folder, you have to explicitly set root namespace (to be account root for instance). 😉
Hope this gives direction.
Hi,
Thanks for your answer.
I tried this way. I got an error saying that we have a wrong format userId.
Here the code that is working well for personal drive:
Here the code that is returning an error saying that the userId has wrong format
It is not expecting to get an id of teamDrive.
Thank you.
To do that you need to use WithPathRoot. By the way, team folder id is neither admin nor member id. That's why you got the error. 😉
Thank you,
It works and here the implemented code
Hi there!
If you need more help you can view your support options (expected response time for a 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!