Delete files inside Dropbox.

Parameters:

Parameters:
See dedicated page for more information.
The Dropbox Delete action calls Dropbox’s /2/files/delete_v2 API to remove a file or folder.
You can pass either a full path (e.g. /customer_orders.csv) or a stable File ID (e.g. id:bcpU3qGJdFcAAAAAAAAABw).
The node returns a status row so you can see which item was deleted (or why it failed). Retries and debug logging are built-in.
Credentials: we have full step-by-step instructions for creating the Dropbox app and collecting App Key, App Secret, and Refresh Token in the DropboxUnlock documentation.
App Key, App Secret, Refresh Token for an app that has at least:
files.content.writefiles.metadata.writeA path or File ID of the item you want to delete.
(You can grab the id from the output of Dropbox ListFiles or via Dropbox API metadata.)
Prepare the input row
Add an InlineTable with a single column named remotePath and one row.
Put the File ID there, e.g.:
id:bcpU3qGJdFcAAAAAAAAABw
(You can also use /customer_orders.csv, but File ID is safer.)
Wire the flow
InlineTable ➜ Dropbox Delete ➜ RunToFinishLine
Configure Dropbox Delete
remotePath field (the three-dot button → choose the column).verbose while testing.Run
In Process → Data you’ll see the echoed remotePath and a status column like _Dropbox_Status = OK.
In the Dropbox Web UI, the file will be moved to “Deleted files”.
Note: The console line “Authorization required, but no authorization protocol specified” you may see in previews is an environment notice; the request still authenticates using your Bearer token and the run succeeds.

/2/files/delete_v2 with either the path or file ID you provide._Dropbox_Status=OK (or an error summary if not).insufficient_scope or missing_scope? Reconfigure your app with files.content.write and files.metadata.write, then re-consent to obtain a new refresh token.InlineTable (column: remotePath)
id:bcpU3qGJdFcAAAAAAAAABw
Dropbox Delete
remotePathxukw3yu5knqpbpkverboseExpected Data output
remotePath _Dropbox_Status
id:bcpU3qGJdFcAAAAAAAAABw OK
For a complete, click-by-click walkthrough on creating the Dropbox app, granting scopes, and collecting App Key, App Secret, and Refresh Token, see our DropboxUnlock documentation (it contains the full step-by-step credential setup).
