We're making changes to the Community, so you may have received some notifications - thanks for your patience and welcome back. Learn more here.
Forum Discussion
1599845
2 years agoNew member | Level 2
How do I find the "ID" of my Dropbox Paper Doc?
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
Please God help me
- Greg-DBDropbox Staff
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 the Paper Migration Guide.
For legacy Paper docs, you would use the /2/paper/docs/list and /2/paper/docs/list/continue endpoints to get a list of the account's Paper doc IDs. You would use /2/paper/docs/download to get the information for any particular Paper doc. In the official Dropbox Python SDK, those are paper_docs_list, paper_docs_list_continue, and paper_docs_download, respectively.
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 /2/files/list_folder and /2/files/list_folder/continue to list the contents of any folder, /2/files/get_metadata to get the metadata for any particular item, and /2/files/export to export the data for any particular Paper file. In the official Dropbox Python SDK, those are files_list_folder, files_list_folder_continue, files_get_metadata, and files_export, respectively.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,875 PostsLatest Activity: 2 years agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!