<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Not able to fetch shared folder when folder are shared with team in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-fetch-shared-folder-when-folder-are-shared-with-team/m-p/732548#M32361</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your answer.&lt;/P&gt;&lt;P&gt;It's actually already the logic we use. The thing is, we test the FullAccount.RootInfo.IsTeam property, and in this case we use WithPathRoot(&amp;lt;RootNameSpaceId&amp;gt;).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We didn't change anything in the code, this property returned true before that's why we could fetch team folders. Now that it returns false, I wonder if any change was made to the API that I should be aware of.&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;</description>
    <pubDate>Mon, 27 Nov 2023 09:02:19 GMT</pubDate>
    <dc:creator>ClicDataConnectors</dc:creator>
    <dc:date>2023-11-27T09:02:19Z</dc:date>
    <item>
      <title>Not able to fetch shared folder when folder are shared with team</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-fetch-shared-folder-when-folder-are-shared-with-team/m-p/731627#M32344</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Useful informations&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- Using VB.Net with Dropbox.API SDK 6.37&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;The problem&lt;/STRONG&gt;&lt;BR /&gt;Using the methods ListFolderAsync and&amp;nbsp;ListFolderContinueAsync, I'm unable to fetch shared folders when folders are shared with a team you are part of, but you are able to retrieve folders when they are directly shared with you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Am I doing something wrong, and the method ListFolderAsync() is not made to retrieve folders shared with teams ?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 09:14:48 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-fetch-shared-folder-when-folder-are-shared-with-team/m-p/731627#M32344</guid>
      <dc:creator>ClicData</dc:creator>
      <dc:date>2023-11-22T09:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to fetch shared folder when folder are shared with team</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-fetch-shared-folder-when-folder-are-shared-with-team/m-p/731764#M32347</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1769749"&gt;@ClicData&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;First af all, the method &lt;A title="Starts returning the contents of a folder" href="https://dropbox.github.io/dropbox-sdk-dotnet/gh-pages/obj/api/Dropbox.Api.Files.Routes.FilesUserRoutes.html" target="_blank" rel="noopener"&gt;ListFolderAsync&lt;/A&gt; is not to list shared folders especially. This method is used to list content of a folder. It can list all entries directly residing in the pointed folder or recursively all nested content. In all cases if there is something shared (either file or folder) it will be listed too. If you want to list only shared folders, better use &lt;A title="Return the list of all shared folders the current user has access to" href="https://dropbox.github.io/dropbox-sdk-dotnet/gh-pages/obj/api/Dropbox.Api.Sharing.Routes.SharingUserRoutes.html#Dropbox_Api_Sharing_Routes_SharingUserRoutes_ListFoldersAsync_System_UInt32_System_Collections_Generic_IEnumerable_Dropbox_Api_Sharing_FolderAction__" target="_blank" rel="noopener"&gt;ListFoldersAsync&lt;/A&gt; method. You might get confused by difference in account root and API root - they are in general different things that can coincide. By default API root is set to your user folder, for account with team space, not to the account root! If desirable, you may need to change this, otherwise you stay limited to your user folder only. Use &lt;A title="Set the value for Dropbox-Api-Path-Root header" href="https://dropbox.github.io/dropbox-sdk-dotnet/gh-pages/obj/api/Dropbox.Api.DropboxClient.html#Dropbox_Api_DropboxClient_WithPathRoot_Dropbox_Api_Common_PathRoot_" target="_blank" rel="noopener"&gt;WithPathRoot&lt;/A&gt; method to do that.&lt;/P&gt;&lt;P&gt;Hope this gives direction.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 14:56:18 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-fetch-shared-folder-when-folder-are-shared-with-team/m-p/731764#M32347</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-11-22T14:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to fetch shared folder when folder are shared with team</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-fetch-shared-folder-when-folder-are-shared-with-team/m-p/732548#M32361</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your answer.&lt;/P&gt;&lt;P&gt;It's actually already the logic we use. The thing is, we test the FullAccount.RootInfo.IsTeam property, and in this case we use WithPathRoot(&amp;lt;RootNameSpaceId&amp;gt;).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We didn't change anything in the code, this property returned true before that's why we could fetch team folders. Now that it returns false, I wonder if any change was made to the API that I should be aware of.&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 09:02:19 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-fetch-shared-folder-when-folder-are-shared-with-team/m-p/732548#M32361</guid>
      <dc:creator>ClicDataConnectors</dc:creator>
      <dc:date>2023-11-27T09:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to fetch shared folder when folder are shared with team</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-fetch-shared-folder-when-folder-are-shared-with-team/m-p/732655#M32373</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1774178"&gt;@ClicDataConnectors&lt;/a&gt; You don't actually need to check the RootInfo.IsTeam property; you can always use WithPathRoot to access the root for any kind of account. I recommend reading the &lt;A href="https://developers.dropbox.com/dbx-team-files-guide" target="_blank"&gt;Team Files Guide&lt;/A&gt; for more information.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 15:44:09 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-fetch-shared-folder-when-folder-are-shared-with-team/m-p/732655#M32373</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-11-27T15:44:09Z</dc:date>
    </item>
  </channel>
</rss>

