Download a file from Dropbox.

yaml
type: "io.kestra.plugin.dropbox.files.Download"

Download a file from a specific Dropbox path.

yaml
id: dropbox_download_file
namespace: company.team
tasks:
  - id: download_report
    type: io.kestra.plugin.dropbox.files.Download
    accessToken: "{{ secrets.DROPBOX_ACCESS_TOKEN }}"
    from: "/shared_reports/quarterly_report.csv"

Download a file using a path from a previous task's output.

yaml
id: dropbox_download_dynamic_path
namespace: company.team
tasks:
  - id: generate_path_file
    type: io.kestra.plugin.core.storage.Write
    content: "/dynamic/data/{{ flow.startDate }}.json"
    # Kestra automatically generates the output URI
  - id: download_dynamic_file
    type: io.kestra.plugin.dropbox.files.Download
    accessToken: "{{ secrets.DROPBOX_ACCESS_TOKEN }}"
    from: "{{ outputs.generate_path_file.uri }}" # Reference the generated URI
Properties

Dropbox access token.

The path of the file to download.

Can be a direct path as a string, or a Kestra internal storage URI (kestra://...) of a file containing the path.

The metadata of the downloaded file from Dropbox.

Format uri

The URI of the downloaded file in Kestra's internal storage.

Format date-time
Format date-time
SubType
Format date-time
SubType string
Format date-time
SubType