14

Is there any unique identifier associated with a Dropbox file that doesn't change with revisions/changes/renaming, that can be accessed via the RESTful API? I want to store it in the database and keep track of some operations on the file.

4
  • Guys @Dropbox, are you listening?
    – MeetM
    Commented Mar 18, 2014 at 7:46
  • 2
    Yes, we're tracking this as a feature request, but we don't have any news right now.
    – Greg
    Commented Mar 18, 2014 at 14:30
  • @Greg any news about this? Commented Dec 29, 2014 at 18:33
  • No news on this, sorry.
    – Greg
    Commented Dec 29, 2014 at 21:35

2 Answers 2

4

Unfortunately, no, the Dropbox API does not currently expose any sort of file ID or hash like this.


Edit: The Dropbox API v2 does now offer file IDs that persist across moves/renames. You can find more information under "Path formats" in the documentation.

The file ID is available as the id field on the FileMetadata object, e.g., as returned by /files/get_metadata.

5
  • 5
    Aw. Another even more sad face :(
    – Domingo C.
    Commented Sep 24, 2013 at 15:04
  • 5
    Aw. Yet Another Sad freaking Tsunami face
    – user134611
    Commented Feb 25, 2014 at 5:27
  • 4
    Aw. :( Yet another yet another sad face.
    – so_mv
    Commented Mar 11, 2014 at 0:04
  • 4
    Aw. Saddest face ever :-(
    – Mark Meeus
    Commented Mar 27, 2014 at 19:29
  • 3
    Aw. Even my cat has sad face now.
    – Dimanoid
    Commented Jun 29, 2015 at 16:28
4

The new Dropbox API v2 supports IDs for files and folders.

However, it doesn't automatically differentiate file/folder moves, renames, etc. from deletions and creations in the event stream. You can use a service like Kloudless which provides a unified cloud storage API that includes file/folder IDs for Dropbox. Kloudless also normalizes the event stream and provides access to several other cloud storage services through a single API. (I work at Kloudless)

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.