<?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: Dropbox API .NET SDK Invite team to team folder in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-NET-SDK-Invite-team-to-team-folder/m-p/348554#M20032</link>
    <description>&lt;P&gt;It sounds like you already have the right idea here for the most part. If you're operating on a team with the old configuration (i.e., not using the "&lt;A href="https://help.dropbox.com/business/team-space-overview" target="_self"&gt;team space&lt;/A&gt;"), you need to explicitly create the team folder using&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Team_Routes_TeamTeamRoutes_TeamFolderCreateAsync_1.htm" target="_self"&gt;TeamFolderCreateAsync&lt;/A&gt; and then add the team group using&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Sharing_Routes_SharingUserRoutes_AddFolderMemberAsync_1.htm" target="_self"&gt;AddFolderMemberAsync&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the issue is that you're trying to use the team ID itself to add the team, instead of the group ID for everyone in the team. (The&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Sharing_Routes_SharingUserRoutes_AddFolderMemberAsync_1.htm" target="_self"&gt;AddFolderMemberAsync&lt;/A&gt;&amp;nbsp;method only takes group IDs.) Group IDs start with "g:". You can get the team's group ID from&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Team_Routes_TeamTeamRoutes_GroupsListAsync_1.htm" target="_self"&gt;GroupsListAsync&lt;/A&gt;/&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Team_Routes_TeamTeamRoutes_GroupsListContinueAsync_1.htm" target="_self"&gt;GroupsListContinueAsync&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;And for teams using the new team space configuration, you don't need to use&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Team_Routes_TeamTeamRoutes_TeamFolderCreateAsync_1.htm" target="_self"&gt;TeamFolderCreateAsync&lt;/A&gt; or&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Sharing_Routes_SharingUserRoutes_AddFolderMemberAsync_1.htm" target="_self"&gt;AddFolderMemberAsync&lt;/A&gt; at all. You would instead call&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_CreateFolderAsync_1.htm" target="_self"&gt;CreateFolderAsync&lt;/A&gt; to make a folder inside the team space, by setting the "path root" to the team space using&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_DropboxClient_WithPathRoot.htm" target="_self"&gt;DropboxClient.WithPathRoot&lt;/A&gt;. There's more information on using the two different configurations in &lt;A href="https://www.dropbox.com/developers/reference/namespace-guide" target="_self"&gt;the Namespace Guide&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jun 2019 16:23:52 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2019-06-06T16:23:52Z</dc:date>
    <item>
      <title>Dropbox API .NET SDK Invite team to team folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-NET-SDK-Invite-team-to-team-folder/m-p/348412#M20027</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am developing an app with the .NET SDk, and up untill recently I have used create_folder_v2 to create folder on the root - thus creating a team folder. However, I noticed that on a Business Dropbox account with the old team space and members configuration the folders that get created are private.&lt;BR /&gt;&lt;BR /&gt;I am using TeamFolderCreateAsync() to create the team folder, but I can't seem to find a way to give access for the TeamFolder to the team. I have tried using AddFolderMember with the teamId, but I am getting an error saying that the dropboxId is invalid.&lt;BR /&gt;&lt;BR /&gt;So my question is, is there a way to give access to a newly created team folder to an entire team? Also, will TeamFolderCreateAsync() work with newer Dropbox accounts that use the new team space and member configuration?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Any help is appreciated greatly!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 09:49:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-NET-SDK-Invite-team-to-team-folder/m-p/348412#M20027</guid>
      <dc:creator>BIMcollab</dc:creator>
      <dc:date>2019-07-16T09:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API .NET SDK Invite team to team folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-NET-SDK-Invite-team-to-team-folder/m-p/348554#M20032</link>
      <description>&lt;P&gt;It sounds like you already have the right idea here for the most part. If you're operating on a team with the old configuration (i.e., not using the "&lt;A href="https://help.dropbox.com/business/team-space-overview" target="_self"&gt;team space&lt;/A&gt;"), you need to explicitly create the team folder using&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Team_Routes_TeamTeamRoutes_TeamFolderCreateAsync_1.htm" target="_self"&gt;TeamFolderCreateAsync&lt;/A&gt; and then add the team group using&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Sharing_Routes_SharingUserRoutes_AddFolderMemberAsync_1.htm" target="_self"&gt;AddFolderMemberAsync&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the issue is that you're trying to use the team ID itself to add the team, instead of the group ID for everyone in the team. (The&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Sharing_Routes_SharingUserRoutes_AddFolderMemberAsync_1.htm" target="_self"&gt;AddFolderMemberAsync&lt;/A&gt;&amp;nbsp;method only takes group IDs.) Group IDs start with "g:". You can get the team's group ID from&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Team_Routes_TeamTeamRoutes_GroupsListAsync_1.htm" target="_self"&gt;GroupsListAsync&lt;/A&gt;/&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Team_Routes_TeamTeamRoutes_GroupsListContinueAsync_1.htm" target="_self"&gt;GroupsListContinueAsync&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;And for teams using the new team space configuration, you don't need to use&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Team_Routes_TeamTeamRoutes_TeamFolderCreateAsync_1.htm" target="_self"&gt;TeamFolderCreateAsync&lt;/A&gt; or&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Sharing_Routes_SharingUserRoutes_AddFolderMemberAsync_1.htm" target="_self"&gt;AddFolderMemberAsync&lt;/A&gt; at all. You would instead call&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_CreateFolderAsync_1.htm" target="_self"&gt;CreateFolderAsync&lt;/A&gt; to make a folder inside the team space, by setting the "path root" to the team space using&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_DropboxClient_WithPathRoot.htm" target="_self"&gt;DropboxClient.WithPathRoot&lt;/A&gt;. There's more information on using the two different configurations in &lt;A href="https://www.dropbox.com/developers/reference/namespace-guide" target="_self"&gt;the Namespace Guide&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 16:23:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-NET-SDK-Invite-team-to-team-folder/m-p/348554#M20032</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-06-06T16:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API .NET SDK Invite team to team folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-NET-SDK-Invite-team-to-team-folder/m-p/349905#M20078</link>
      <description>&lt;P&gt;Hi Greg,&lt;BR /&gt;&lt;BR /&gt;Thanks for the answer! I was wondering is there an API call with which you can distinguish whether the Dropbox account is using the old configuration or the new team space configuration?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 12:34:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-NET-SDK-Invite-team-to-team-folder/m-p/349905#M20078</guid>
      <dc:creator>BIMcollab</dc:creator>
      <dc:date>2019-06-13T12:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API .NET SDK Invite team to team folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-NET-SDK-Invite-team-to-team-folder/m-p/349926#M20081</link>
      <description>&lt;P&gt;Yes, on the user side, you can use&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Users_Routes_UsersUserRoutes_GetCurrentAccountAsync.htm" target="_self"&gt;GetCurrentAccountAsync&lt;/A&gt;. You can use the returned&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/P_Dropbox_Api_Users_FullAccount_RootInfo.htm" target="_self"&gt;FullAccount.RootInfo&lt;/A&gt;&amp;nbsp;to distinguish this.&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/P_Dropbox_Api_Common_RootInfo_IsTeam.htm" target="_self"&gt;RootInfo.IsTeam&lt;/A&gt; means the team uses the team space;&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/P_Dropbox_Api_Common_RootInfo_IsUser.htm" target="_self"&gt;RootInfo.IsUser&lt;/A&gt; means it doesn't.&lt;/P&gt;
&lt;P&gt;Or on the team side, you can use&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Team_Routes_TeamTeamRoutes_FeaturesGetValuesAsync_1.htm" target="_self"&gt;FeaturesGetValuesAsync&lt;/A&gt; to get and check the&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/T_Dropbox_Api_Team_FeatureValue_HasTeamSharedDropbox.htm" target="_self"&gt;FeatureValue.HasTeamSharedDropbox&lt;/A&gt; value.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 14:24:07 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-NET-SDK-Invite-team-to-team-folder/m-p/349926#M20081</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-06-13T14:24:07Z</dc:date>
    </item>
  </channel>
</rss>

