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

Forum Discussion

dochdl's avatar
dochdl
Helpful | Level 6
7 years ago

How to get relative path of file in team folder?

My app tracks the files and keeps the metadata in my db and I do it by frequently calling list_folder/continue I recently added support to team folders I so I use path: "ns:<namespace_id>" to get t...
  • Greg-DB's avatar
    7 years ago

    To get the relative paths for items in the team space, you should use the "Dropbox-API-Path-Root" to set the root for the API call to that team space. You can find more information in the namespace guide:

     

    https://www.dropbox.com/developers/reference/namespace-guide

     

    For example, that would look like this:

     

     

    curl -X POST https://api.dropboxapi.com/2/files/list_folder \
        --header 'Authorization: Bearer <ACCESS_TOKEN>' \
        --header 'Dropbox-API-Select-User: <MEMBER_ID>' \
        --header 'Content-Type: application/json' \
        --header 'Dropbox-API-Path-Root: {".tag": "root", "root": "<NS_ID>"}' \
        --data "{\"path\": \"\"}"

    Also, using that, you can delete either via path or id.