Hello everyone,
I’m currently working with the Dropbox API, and I’m trying to rename a file within a shared folder. The folder is shared with me via a shared link, and I have the necessary edit permissions on the file. However, I’m encountering a problem where I can’t seem to get the full path to use in the files/move_v2 API endpoint to rename the file.
Here’s a quick summary of what I’ve done:
•I have a shared link to the file/folder.
•I’m able to access the file using the shared link and even fetch file metadata.
•I want to rename the file and keep it in the same folder using the Dropbox API.
The Problem:
The Dropbox API’s files/move_v2 requires the full path of the file, but when using a shared link, I’m not getting the full path back. I only have the file’s metadata like the file ID, and I can’t seem to directly rename it without knowing the full path.
Questions:
1. Is there a way to retrieve the full path of a file via a shared link, so I can rename it?
2.Can I rename the file using just the file ID instead of the full path in the files/move_v2 API?
3.Is there a different approach I should be taking when working with shared links and renaming files?
Any help or advice on how to rename a file when the full path isn’t directly available would be greatly appreciated!