<?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: log activities via API in personal account in Discuss Dropbox Developer &amp; API</title>
    <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/log-activities-via-API-in-personal-account/m-p/666216#M3247</link>
    <description>&lt;P&gt;No, the Dropbox API does not offer an event history for non-team accounts, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.&lt;/P&gt;</description>
    <pubDate>Wed, 08 Mar 2023 13:54:00 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2023-03-08T13:54:00Z</dc:date>
    <item>
      <title>log activities via API in personal account</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/log-activities-via-API-in-personal-account/m-p/666106#M3245</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dropbox business account has a log functionality. (Logs for files - added, edited, deleted, moved etc). We can fetch these details via API for Dropbox business account. Isn't it possible to do the same in personal account?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If personal account provides logs functionality, then I can use it to get list of created, edited, deleted and moved files.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;This are my requirements&lt;BR /&gt;1. List Created files,&lt;/P&gt;&lt;P&gt;2. List Updated files,&lt;/P&gt;&lt;P&gt;3. List Moved files,&lt;/P&gt;&lt;P&gt;4. List deleted files&lt;BR /&gt;5. List replaced files&lt;BR /&gt;&lt;BR /&gt;from above list, which functionalities are possible using Dropbox API?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 06:57:03 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/log-activities-via-API-in-personal-account/m-p/666106#M3245</guid>
      <dc:creator>dhruvin</dc:creator>
      <dc:date>2023-03-08T06:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: log activities via API in personal account</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/log-activities-via-API-in-personal-account/m-p/666216#M3247</link>
      <description>&lt;P&gt;No, the Dropbox API does not offer an event history for non-team accounts, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 13:54:00 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/log-activities-via-API-in-personal-account/m-p/666216#M3247</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-03-08T13:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: log activities via API in personal account</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/log-activities-via-API-in-personal-account/m-p/666824#M3250</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/10"&gt;@Greg-DB&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response.&lt;BR /&gt;&lt;BR /&gt;Can you share proper documentation on how exactly team event logs work. Also how Can list files and folders that are inside a team folder using API.&lt;BR /&gt;Also is there any way I can filter events based on time?&lt;BR /&gt;&lt;BR /&gt;I want to sync content of dropbox with external server.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2023 08:04:43 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/log-activities-via-API-in-personal-account/m-p/666824#M3250</guid>
      <dc:creator>dhruvin</dc:creator>
      <dc:date>2023-03-10T08:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: log activities via API in personal account</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/log-activities-via-API-in-personal-account/m-p/666941#M3253</link>
      <description>&lt;P&gt;If you want to list the contents of any particular folder, you can use the &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_blank"&gt;/2/files/list_folder&lt;/A&gt; and &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue" target="_blank"&gt;/2/files/list_folder/continue&lt;/A&gt; endpoints. That works for both team and non-team accounts. It's not an event listing, but rather a way to list all of the contents under any particular path. I recommend reading the &lt;A href="https://developers.dropbox.com/dbx-file-access-guide" target="_blank"&gt;File Access&lt;/A&gt; and &lt;A href="https://developers.dropbox.com/dbx-team-files-guide" target="_blank"&gt;Team Files&lt;/A&gt; guides for more information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For listing events on a team, you would use the &lt;A href="https://www.dropbox.com/developers/documentation/http/teams#team_log-get_events" target="_blank"&gt;/2/team_log/get_events&lt;/A&gt; and &lt;A href="https://www.dropbox.com/developers/documentation/http/teams#team_log-get_events-continue" target="_blank"&gt;/2/team_log/get_events/continue&lt;/A&gt; endpoints, which do offer the ability to filter by date/time. Check out the &lt;A href="https://developers.dropbox.com/dbx-team-administration-guide" target="_blank"&gt;Team Administration&lt;/A&gt; and &lt;A href="https://developers.dropbox.com/detecting-changes-guide" target="_blank"&gt;Detecting Changes&lt;/A&gt; guides for more information.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2023 16:20:45 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/log-activities-via-API-in-personal-account/m-p/666941#M3253</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-03-10T16:20:45Z</dc:date>
    </item>
  </channel>
</rss>

