We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

avivtzo's avatar
avivtzo
Explorer | Level 4
5 years ago

Getting 409 error when calling list_folder/continue on renamed folder

Hi guys,

I'm using your API in order to fetch the folders. I'm accessing the endpoint "/2/files/list_folder" for the first request and then using cursor I send the rest of the requests through "/2/files/list_folder/continue".

 

Everything works perfectly until I change the folder name in Dropbox(UI). Then, I get the following error - 409, Conflict (HTTP): {".tag":"path","path":{".tag":"not_found"}}.

My request contains {path: "/folderName"} but as I mentioned, I just renamed the folder name so the path is incorrect. I change the folder name in the Dropbox website so I have no way to identify this change (also tried to use webhook to see this change).

What am I missing ?

 

TIA 

 

  • Greg-DB's avatar
    Greg-DB
    5 years ago

    That's correct, when listing a folder based on the folder's path, if the path changes the folder will no longer be found. 

    Здравко's recommendation of using the folder's 'id' instead of the path is a good one. That is, when calling /2/files/list_folder, supply the folder's id (which starts with "id:") as the 'path' parameter. The id doesn't change when the folder is moved/renamed. (You may get a 'reset' error from /2/files/list_folder/continue in that case, but you can then easily start from /2/files/list_folder again with the same id.)

    Alternatively, you could use /2/files/list_folder[/continue] for the folder's parent folder, whatever that may be, to keep track of changes to that parent folder's contents. (Note: the "path" value for the root folder itself is the empty string: "")

    And yes, webhooks would only tell you when something changed, not what changed, so you would still need to use one of the above methods.

  • Здравко's avatar
    Здравко
    Legendary | Level 20

    You don't miss anything. You are just trying access something missing (as noted in the error and described by you). That's it. Would be surprise if something else happens. To be sure that everything is consistent (at least some more) in dynamic environment don't use names, but ids and enumerate the things starting from the root, so if anything have changed you can catch it. The root is always the same. :wink:

    • Greg-DB's avatar
      Greg-DB
      Icon for Dropbox Staff rankDropbox Staff

      That's correct, when listing a folder based on the folder's path, if the path changes the folder will no longer be found. 

      Здравко's recommendation of using the folder's 'id' instead of the path is a good one. That is, when calling /2/files/list_folder, supply the folder's id (which starts with "id:") as the 'path' parameter. The id doesn't change when the folder is moved/renamed. (You may get a 'reset' error from /2/files/list_folder/continue in that case, but you can then easily start from /2/files/list_folder again with the same id.)

      Alternatively, you could use /2/files/list_folder[/continue] for the folder's parent folder, whatever that may be, to keep track of changes to that parent folder's contents. (Note: the "path" value for the root folder itself is the empty string: "")

      And yes, webhooks would only tell you when something changed, not what changed, so you would still need to use one of the above methods.

      • avivtzo's avatar
        avivtzo
        Explorer | Level 4

        Thanks everyone, using ID as the path is definitely a better idea.

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,877 PostsLatest Activity: 2 hours ago
325 Following

If 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!