Hi,
I noticed that the Dropbox web UI calls an internal endpoint: https://www.dropbox.com/2/files/get_upload_info
The response contains two fields:
{
"display_name": "tester",
"uploaded": "2026-05-16T21:47:38Z"
}
I understand this is not part of the public API, but I'd like to understand what the uploaded field represents exactly. Specifically:
- Does it record the time the file was first uploaded?
- Or does it update every time the file is overwritten/re-uploaded?
Is there any official explanation for this field? And is there an equivalent field available in the public API?
Thanks!