<?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 How can I get a list of folders and files for each User account in Discuss Dropbox Developer &amp; API</title>
    <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-can-I-get-a-list-of-folders-and-files-for-each-User-account/m-p/634053#M2980</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm new to using Dropbox.&amp;nbsp; My company has a business account with most employees having a Dropbox account.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have a need to get a list of folders and files,&amp;nbsp; shared folders and shared files, and owners of shared folders and shared files for each business User account.&amp;nbsp; Can this be accomplished via the APIs?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 03 Nov 2022 21:51:37 GMT</pubDate>
    <dc:creator>tknoob</dc:creator>
    <dc:date>2022-11-03T21:51:37Z</dc:date>
    <item>
      <title>How can I get a list of folders and files for each User account</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-can-I-get-a-list-of-folders-and-files-for-each-User-account/m-p/634053#M2980</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm new to using Dropbox.&amp;nbsp; My company has a business account with most employees having a Dropbox account.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have a need to get a list of folders and files,&amp;nbsp; shared folders and shared files, and owners of shared folders and shared files for each business User account.&amp;nbsp; Can this be accomplished via the APIs?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 21:51:37 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-can-I-get-a-list-of-folders-and-files-for-each-User-account/m-p/634053#M2980</guid>
      <dc:creator>tknoob</dc:creator>
      <dc:date>2022-11-03T21:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get a list of folders and files for each User account</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-can-I-get-a-list-of-folders-and-files-for-each-User-account/m-p/634296#M2981</link>
      <description>&lt;P&gt;Yes, the Dropbox API offers functionality like this. You may want to check out the following guides to get started:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://www.dropbox.com/developers/reference/getting-started" target="_blank"&gt;https://www.dropbox.com/developers/reference/getting-started&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://developers.dropbox.com/dbx-file-access-guide" target="_blank"&gt;https://developers.dropbox.com/dbx-file-access-guide&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://developers.dropbox.com/dbx-sharing-guide" target="_blank"&gt;https://developers.dropbox.com/dbx-sharing-guide&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;For instance:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;to list the contents of any particular folder: &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder&lt;/A&gt; &amp;amp; &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;to list shared folders: &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folders" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folders&lt;/A&gt; &amp;amp; &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folders-continue" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folders-continue&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;to list received shared files: &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_received_files" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_received_files&lt;/A&gt; &amp;amp; &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_received_files-continue" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_received_files-continue&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;to list the owner/members of a shared folder: &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folder_members" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folder_members&lt;/A&gt; &amp;amp; &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folder_members-continue" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folder_members-continue&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;By the way, those are links to the documentation for the HTTPS endpoints themselves, but we recommend using one of the official SDKs if possible. Those have corresponding native methods for the HTTPS endpoints: &lt;A href="https://www.dropbox.com/developers/documentation#sdks" target="_blank"&gt;https://www.dropbox.com/developers/documentation#sdks&lt;/A&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 17:44:24 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-can-I-get-a-list-of-folders-and-files-for-each-User-account/m-p/634296#M2981</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-11-04T17:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get a list of folders and files for each User account</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-can-I-get-a-list-of-folders-and-files-for-each-User-account/m-p/634348#M2982</link>
      <description>&lt;P&gt;Thanks for the info.&amp;nbsp; As an example, in the case of using the list_folder API, how do I specify the User account of the folders I want to view?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm an admin, I just want to get every User's file listing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 20:36:14 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-can-I-get-a-list-of-folders-and-files-for-each-User-account/m-p/634348#M2982</guid>
      <dc:creator>tknoob</dc:creator>
      <dc:date>2022-11-04T20:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get a list of folders and files for each User account</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-can-I-get-a-list-of-folders-and-files-for-each-User-account/m-p/634357#M2983</link>
      <description>&lt;P&gt;For that, you would use the "member file access" feature as documented here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&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;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 21:14:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-can-I-get-a-list-of-folders-and-files-for-each-User-account/m-p/634357#M2983</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-11-04T21:14:32Z</dc:date>
    </item>
  </channel>
</rss>

