<?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 Business Teams/Groups is this possible? in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Business-Teams-Groups-is-this-possible/m-p/299262#M18178</link>
    <description>&lt;P&gt;I'm trying to wrap my head around the documentation but it is quite confusing, so I would appreciate if someone who is stuck in to the API already and knows its limitations could answer.&lt;/P&gt;&lt;P&gt;Q: Is it possible to be able to add a member to a Group; then in that member's Dropbox accept the shares, make a new folder, and move the newly accepted shares into that newly created folder?&lt;/P&gt;&lt;P&gt;The python SDK is really not very clear, perhaps I should switch to Java or something.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:10:12 GMT</pubDate>
    <dc:creator>Sensator</dc:creator>
    <dc:date>2019-05-29T09:10:12Z</dc:date>
    <item>
      <title>Business Teams/Groups is this possible?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Business-Teams-Groups-is-this-possible/m-p/299262#M18178</link>
      <description>&lt;P&gt;I'm trying to wrap my head around the documentation but it is quite confusing, so I would appreciate if someone who is stuck in to the API already and knows its limitations could answer.&lt;/P&gt;&lt;P&gt;Q: Is it possible to be able to add a member to a Group; then in that member's Dropbox accept the shares, make a new folder, and move the newly accepted shares into that newly created folder?&lt;/P&gt;&lt;P&gt;The python SDK is really not very clear, perhaps I should switch to Java or something.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:10:12 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Business-Teams-Groups-is-this-possible/m-p/299262#M18178</guid>
      <dc:creator>Sensator</dc:creator>
      <dc:date>2019-05-29T09:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Business Teams/Groups is this possible?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Business-Teams-Groups-is-this-possible/m-p/299377#M18183</link>
      <description>&lt;P&gt;It sounds like everything you're looking for is possible. One note though: if by "group" you do mean a Business team group, you don't need to explicitly accept that group in the account after it's added. You may be thinking of shared folders, which you do need to explicitly add.&lt;/P&gt;
&lt;P&gt;So, to be specific:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;to add a team member to a group:
&lt;UL&gt;
&lt;LI&gt;HTTP:&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/teams#team-groups-members-add" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/teams#team-groups-members-add&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Python SDK:&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.DropboxTeam.team_groups_members_add" target="_blank"&gt;https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.DropboxTeam.team_groups_members_add&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;to invite a member to a shared folder:
&lt;UL&gt;
&lt;LI&gt;HTTP: &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-add_folder_member" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-add_folder_member&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Python SDK:&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.Dropbox.sharing_add_folder_member" target="_blank"&gt;https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.Dropbox.sharing_add_folder_member&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;to accept the shared folder in the recipient's account:
&lt;UL&gt;
&lt;LI&gt;HTTP:&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-mount_folder" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-mount_folder&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Python SDK:&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.Dropbox.sharing_mount_folder" target="_blank"&gt;https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.Dropbox.sharing_mount_folder&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;to create a new (not shared) folder:
&lt;UL&gt;
&lt;LI&gt;HTTP: &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-create_folder" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-create_folder&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Python SDK:&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.Dropbox.files_create_folder_v2" target="_blank"&gt;https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.Dropbox.files_create_folder_v2&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;to move files or folders:
&lt;UL&gt;
&lt;LI&gt;HTTP:&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-move" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-move&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Python SDK:&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.Dropbox.files_move_v2" target="_blank"&gt;https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.Dropbox.files_move_v2&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Be sure to review the "Member file access" documentation for information on how to make user-level calls if you're using a Business app:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/teams#teams-member-file-access" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/teams#teams-member-file-access&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The following guides may also be helpful:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://www.dropbox.com/developers/reference/content-access-guide" target="_blank"&gt;https://www.dropbox.com/developers/reference/content-access-guide&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://www.dropbox.com/developers/reference/namespace-guide" target="_blank"&gt;https://www.dropbox.com/developers/reference/namespace-guide&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;By the way, the SDKs are all built from the same spec, so they&amp;nbsp;don't offer substantially different functionality.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 17:19:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Business-Teams-Groups-is-this-possible/m-p/299377#M18183</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-09-26T17:19:52Z</dc:date>
    </item>
  </channel>
</rss>

