<?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 Shared Folder Metadata in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-Folder-Metadata/m-p/161542#M5596</link>
    <description>&lt;P&gt;The help on this topic is:&lt;/P&gt;
&lt;UL class="parameters"&gt;
&lt;LI&gt;
&lt;SPAN class="param"&gt;shared_folder_id&lt;/SPAN&gt; &lt;SPAN class="param-info"&gt;optional&lt;/SPAN&gt; The ID of a specific shared folder.&lt;/LI&gt;
&lt;LI&gt;
&lt;SPAN class="param"&gt;include_membership&lt;/SPAN&gt; Required if &lt;CODE&gt;shared_folder_id&lt;/CODE&gt; is specified. If true, include a list of members and a list of groups for the shared folder.&lt;/LI&gt;
&lt;LI&gt;
&lt;SPAN class="param"&gt;show_unmounted&lt;/SPAN&gt; &lt;SPAN class="param-info"&gt;optional&lt;/SPAN&gt; This value, either true or false(default), determines whether the returned list of shared folders will include shared folders that the user has left (but may still rejoin).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;My interpretation is that&lt;STRONG&gt; include_membership=True&lt;/STRONG&gt; MUST have a shared folder ID.&amp;nbsp; Ideally I'd like to have include_membership WITHOUT a shared folder ID and get a JSON return with all the shared folders and all of the members of the share (basically in one REST request).&lt;/P&gt;
&lt;P&gt;The other option, which I'm doing now, is to get the shared folder metadata and for every folder call shared folder metadata again supplying a shared folder id (retrieved from the original get shared folder metadata request) with include_membership =True.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;kevin&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:36:52 GMT</pubDate>
    <dc:creator>Kevin B.36</dc:creator>
    <dc:date>2019-05-29T09:36:52Z</dc:date>
    <item>
      <title>Shared Folder Metadata</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-Folder-Metadata/m-p/161542#M5596</link>
      <description>&lt;P&gt;The help on this topic is:&lt;/P&gt;
&lt;UL class="parameters"&gt;
&lt;LI&gt;
&lt;SPAN class="param"&gt;shared_folder_id&lt;/SPAN&gt; &lt;SPAN class="param-info"&gt;optional&lt;/SPAN&gt; The ID of a specific shared folder.&lt;/LI&gt;
&lt;LI&gt;
&lt;SPAN class="param"&gt;include_membership&lt;/SPAN&gt; Required if &lt;CODE&gt;shared_folder_id&lt;/CODE&gt; is specified. If true, include a list of members and a list of groups for the shared folder.&lt;/LI&gt;
&lt;LI&gt;
&lt;SPAN class="param"&gt;show_unmounted&lt;/SPAN&gt; &lt;SPAN class="param-info"&gt;optional&lt;/SPAN&gt; This value, either true or false(default), determines whether the returned list of shared folders will include shared folders that the user has left (but may still rejoin).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;My interpretation is that&lt;STRONG&gt; include_membership=True&lt;/STRONG&gt; MUST have a shared folder ID.&amp;nbsp; Ideally I'd like to have include_membership WITHOUT a shared folder ID and get a JSON return with all the shared folders and all of the members of the share (basically in one REST request).&lt;/P&gt;
&lt;P&gt;The other option, which I'm doing now, is to get the shared folder metadata and for every folder call shared folder metadata again supplying a shared folder id (retrieved from the original get shared folder metadata request) with include_membership =True.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;kevin&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:36:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-Folder-Metadata/m-p/161542#M5596</guid>
      <dc:creator>Kevin B.36</dc:creator>
      <dc:date>2019-05-29T09:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Shared Folder Metadata</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-Folder-Metadata/m-p/161543#M5597</link>
      <description>&lt;P&gt;It looks like you're referring to the Core API /shared_folders endpoint. The &lt;A href="https://www.dropbox.com/developers-v1/core/docs" target="_blank" rel="nofollow noreferrer"&gt;documentation&lt;/A&gt; means that if&amp;nbsp;shared_folder_id is specified, you must also specify&amp;nbsp;include_membership. However, that doesn't mean you can't use&amp;nbsp;include_membership without a&amp;nbsp;shared_folder_id. That means you can call /shared_folders and set&amp;nbsp;include_membership=true without specifying a&amp;nbsp;shared_folder_id, and it will return all of the shared folders along with the membership.&lt;/P&gt;
&lt;P&gt;I just tried that and it worked for me. Give that a try and let me know if you run in to any trouble.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2016 02:27:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-Folder-Metadata/m-p/161543#M5597</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-01-13T02:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Shared Folder Metadata</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-Folder-Metadata/m-p/161544#M5598</link>
      <description>&lt;P&gt;Gregory,&lt;/P&gt;
&lt;P&gt;Brilliant, works perfectly. Cuts my processing time down (for say user with 20 shared folders) by an order of magnitude, it's that significant.&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Kevin&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 08:39:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-Folder-Metadata/m-p/161544#M5598</guid>
      <dc:creator>Kevin B.36</dc:creator>
      <dc:date>2016-01-15T08:39:55Z</dc:date>
    </item>
  </channel>
</rss>

