Hi,
I've been using the following endpoint to return a users dropbox folders/files:
https://api.dropbox.com/1/delta?include_media_info=False
I'm getting the following for 8 entries:
["/Folder/fileexample.txt",
null],
The rest are returning metadata as expected ie
["/folder/myfile.xls",
{
"parent_shared_folder_id": "123456",
"rev": "1",
"thumb_exists": false,
"path": "/folder/myfile.xls",
"is_dir": false,
"icon": "page_white_excel",
"read_only": false,
"modifier": null,
"bytes": 0,
"modified": "Thu, 18 Aug 2016 15:53:30 +0000",
"size": "1 bytes",
"root": "dropbox",
"revision": 123456
}],
Do you know why this might be occurring?
Thanks