<?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 do I find the &amp;quot;ID&amp;quot; of my Dropbox Paper Doc? in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-find-the-quot-ID-quot-of-my-Dropbox-Paper-Doc/m-p/643631#M29571</link>
    <description>&lt;P&gt;I am literally going insane, I have been searching for hours and hours and have tried talking to the Dropbox help bot, at this point I just feel like I'm on a reality TV show being pranked, I literally just want to find the "Paper Document ID" of my Paper Document so that I can do a bit of Python&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Please God help me&lt;/P&gt;</description>
    <pubDate>Tue, 13 Dec 2022 18:24:42 GMT</pubDate>
    <dc:creator>1599845</dc:creator>
    <dc:date>2022-12-13T18:24:42Z</dc:date>
    <item>
      <title>How do I find the "ID" of my Dropbox Paper Doc?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-find-the-quot-ID-quot-of-my-Dropbox-Paper-Doc/m-p/643631#M29571</link>
      <description>&lt;P&gt;I am literally going insane, I have been searching for hours and hours and have tried talking to the Dropbox help bot, at this point I just feel like I'm on a reality TV show being pranked, I literally just want to find the "Paper Document ID" of my Paper Document so that I can do a bit of Python&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Please God help me&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2022 18:24:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-find-the-quot-ID-quot-of-my-Dropbox-Paper-Doc/m-p/643631#M29571</guid>
      <dc:creator>1599845</dc:creator>
      <dc:date>2022-12-13T18:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I find the "ID" of my Dropbox Paper Doc?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-find-the-quot-ID-quot-of-my-Dropbox-Paper-Doc/m-p/643689#M29572</link>
      <description>&lt;P&gt;First, note that there are currently two different Paper configurations that an account may be using, which will affect how you use the API to interact with Paper docs. You can find information on this in &lt;A href="https://developers.dropbox.com/paper-migration-guide" target="_blank"&gt;the Paper Migration Guide&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For legacy Paper docs, you would use the &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#paper-docs-list" target="_blank"&gt;/2/paper/docs/list&lt;/A&gt; and &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#paper-docs-list-continue" target="_blank"&gt;/2/paper/docs/list/continue&lt;/A&gt; endpoints to get a list of the account's Paper doc IDs. You would use &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#paper-docs-download" target="_self"&gt;/2/paper/docs/download&lt;/A&gt; to get the information for any particular Paper doc. In &lt;A href="https://github.com/dropbox/dropbox-sdk-python" target="_blank"&gt;the official Dropbox Python SDK&lt;/A&gt;, those are &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.paper_docs_list" target="_blank"&gt;paper_docs_list&lt;/A&gt;, &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.paper_docs_list_continue" target="_blank"&gt;paper_docs_list_continue&lt;/A&gt;, and &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.paper_docs_download" target="_blank"&gt;paper_docs_download&lt;/A&gt;, respectively.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For Paper docs as files in the filesystem, you can use the standard files endpoints to get information about the Paper doc files. You can use &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; to list the contents of any folder, &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-get_metadata" target="_blank"&gt;/2/files/get_metadata&lt;/A&gt; to get the metadata for any particular item, and &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-export" target="_blank"&gt;/2/files/export&lt;/A&gt; to export the data for any particular Paper file. In &lt;A href="https://github.com/dropbox/dropbox-sdk-python" target="_blank"&gt;the official Dropbox Python SDK&lt;/A&gt;, those are &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_list_folder" target="_blank"&gt;files_list_folder&lt;/A&gt;, &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_list_folder_continue" target="_blank"&gt;files_list_folder_continue&lt;/A&gt;, &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_get_metadata" target="_blank"&gt;files_get_metadata&lt;/A&gt;, and &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_export" target="_blank"&gt;files_export&lt;/A&gt;, respectively.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2022 13:58:48 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-do-I-find-the-quot-ID-quot-of-my-Dropbox-Paper-Doc/m-p/643689#M29572</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-12-13T13:58:48Z</dc:date>
    </item>
  </channel>
</rss>

