<?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: Try to Share a Sub-Folder of a Team Folder using API in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Try-to-Share-a-Sub-Folder-of-a-Team-Folder-using-API/m-p/328292#M19225</link>
    <description>&lt;P&gt;Thank you .....thats works perfectly&lt;/P&gt;</description>
    <pubDate>Tue, 12 Feb 2019 16:07:57 GMT</pubDate>
    <dc:creator>slowdolphin</dc:creator>
    <dc:date>2019-02-12T16:07:57Z</dc:date>
    <item>
      <title>Try to Share a Sub-Folder of a Team Folder using API</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Try-to-Share-a-Sub-Folder-of-a-Team-Folder-using-API/m-p/327794#M19207</link>
      <description>&lt;P&gt;I can share a Shared folder to a member using&lt;/P&gt;&lt;PRE&gt;https://api.dropboxapi.com/2/sharing/add_folder_member
Data: {
    "shared_folder_id": "xxxxxxxxx",
    "members": [{
            "member": {
                ".tag": "email",
                "email": "mymail"
            },
            "access_level": "viewer"
        }],
    "quiet": false,
    "custom_message": "Documentation for launch day"
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I wanted to Share a Sub-Folder to a specific group of internal user so I created a Team Folder to do that.&lt;BR /&gt;However I am not sure which api I can call to assign a group to a sub folder under Team Folder.&lt;BR /&gt;Can someone please help me out here? I have Business Advance Account.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:08:05 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Try-to-Share-a-Sub-Folder-of-a-Team-Folder-using-API/m-p/327794#M19207</guid>
      <dc:creator>slowdolphin</dc:creator>
      <dc:date>2019-05-29T09:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Try to Share a Sub-Folder of a Team Folder using API</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Try-to-Share-a-Sub-Folder-of-a-Team-Folder-using-API/m-p/327805#M19210</link>
      <description>&lt;P&gt;If you've already created the team folder, you can then share a sub folder under it using&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-share_folder" target="_blank"&gt;/2/sharing/share_folder&lt;/A&gt;, and then add the group as a member using &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-add_folder_member" target="_self"&gt;/2/sharing/add_folder_member&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;That would look like this:&lt;/P&gt;
&lt;PRE&gt;curl -X POST https://api.dropboxapi.com/2/sharing/share_folder \
    --header "Authorization: Bearer &amp;lt;ACCESS_TOKEN&amp;gt;" \
    --header "Dropbox-API-Select-Admin: &amp;lt;ADMIN_MEMBER_ID&amp;gt;" \
    --header "Content-Type: application/json" \
    --data "{\"path\": \"ns:&amp;lt;TEAM_FOLDER_ID&amp;gt;/&amp;lt;SUBFOLDER_NAME&amp;gt;\"}"

curl -X POST https://api.dropboxapi.com/2/sharing/add_folder_member \
    --header "Authorization: Bearer &amp;lt;ACCESS_TOKEN&amp;gt;" \
    --header "Dropbox-API-Select-Admin: &amp;lt;ADMIN_MEMBER_ID&amp;gt;" \
    --header "Content-Type: application/json" \
    --data "{\"shared_folder_id\": \"&amp;lt;SHARED_FOLDER_ID&amp;gt;\",\"members\": [{\"member\": {\".tag\": \"dropbox_id\",\"dropbox_id\": \"&amp;lt;GROUP_ID&amp;gt;\"}}]}"
&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Feb 2019 21:52:20 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Try-to-Share-a-Sub-Folder-of-a-Team-Folder-using-API/m-p/327805#M19210</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-02-08T21:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Try to Share a Sub-Folder of a Team Folder using API</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Try-to-Share-a-Sub-Folder-of-a-Team-Folder-using-API/m-p/328292#M19225</link>
      <description>&lt;P&gt;Thank you .....thats works perfectly&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 16:07:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Try-to-Share-a-Sub-Folder-of-a-Team-Folder-using-API/m-p/328292#M19225</guid>
      <dc:creator>slowdolphin</dc:creator>
      <dc:date>2019-02-12T16:07:57Z</dc:date>
    </item>
  </channel>
</rss>

