We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

borhene's avatar
borhene
New member | Level 2
2 years ago

Cannot get team folder's content

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

 

 

  • 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.

    • borhene's avatar
      borhene
      New member | Level 2

      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.