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

Forum Discussion

ABDUL Salam's avatar
ABDUL Salam
Explorer | Level 3
2 years ago

How to Use Dropbox API to Organize and Save Files from External URLs?

Hello Forum Members, I have a project where I receive public URLs of files, and I need to save these files to a specific folder structure in Dropbox. The folder structure in Dropbox should be o...
  • Greg-DB's avatar
    2 years ago

    Dropbox does offer an API endpoint /2/files/save_url which allows you to specify a particular URL to a file and a path where you'd like to save that file in the connected Dropbox account. You can supply the public URL, and programmatically build the desired destination path in your code.

     

    By the way, that's a link to the documentation for the HTTPS endpoints themselves, but we recommend using one of the official SDKs if possible. Those have corresponding native methods for the HTTPS endpoints.

     

    That sounds like that would work for your use case, so I suggest trying that out. The API Explorer is a good way to test and prototype calls like this.