Dropbox Delete

Dropbox Delete

Certified

Delete Dropbox file or folder

Removes a Dropbox item at the resolved path. Path must start with /; can be read from a kestra:// URI. Fails if not found or token lacks delete permission.

yaml
type: io.kestra.plugin.dropbox.files.Delete

Delete a file or folder from a specific Dropbox path.

yaml
id: dropbox_delete
namespace: company.team
tasks:
  - id: delete_report
    type: io.kestra.plugin.dropbox.files.Delete
    accessToken: "{{ secret('DROPBOX_ACCESS_TOKEN') }}"
    from: "/old_reports/stale_file.csv"
Properties

Dropbox access token

Token must allow deleting the target path.

Path to delete

Literal Dropbox path or kestra:// URI pointing to the path content. Resolved path must start with /.

Reference (ref) of the pluginDefaults to apply to this task.

Deleted item metadata

Definitions
clientModifiedstring
Formatdate-time

Client modified time

Last modified timestamp from Dropbox. Null for folders.

idstring

Lower-cased path

Dropbox path_lower for the entry — the item's lower-cased path, not a stable unique ID.

namestring

Item name

pathstring

Display path

Case-preserved display path from Dropbox.

sizeinteger

Size in bytes

Null for folders.

typestring

Entry type

Either 'file' or 'folder'.