Dropbox
Node: dropbox · Full type: n8n-nodes-base.dropbox · Version: 1
Credentials
dropboxApi (alias: @dropbox) / dropboxOAuth2Api (alias: @dropbox)
CREDENTIAL @dropbox = dropboxApi "My Dropbox"
Operations
Resource: file
copy
| Parameter |
Type |
Default |
Details |
path |
string |
"" |
required |
toPath |
string |
"" |
required |
delete
| Parameter |
Type |
Default |
Details |
path |
string |
"" |
required |
download
| Parameter |
Type |
Default |
Details |
path |
string |
"" |
required |
binaryPropertyName |
string |
"data" |
required |
move
| Parameter |
Type |
Default |
Details |
path |
string |
"" |
required |
toPath |
string |
"" |
required |
upload
| Parameter |
Type |
Default |
Details |
path |
string |
"" |
required |
binaryData |
boolean |
false |
|
fileContent |
string |
"" |
|
binaryPropertyName |
string |
"data" |
required |
Resource: folder
copy
| Parameter |
Type |
Default |
Details |
path |
string |
"" |
required |
toPath |
string |
"" |
required |
create
| Parameter |
Type |
Default |
Details |
path |
string |
"" |
required |
delete
| Parameter |
Type |
Default |
Details |
path |
string |
"" |
required |
list
| Parameter |
Type |
Default |
Details |
path |
string |
"" |
|
returnAll |
boolean |
false |
|
limit |
number |
100 |
|
filters |
collection |
{} |
keys: include_deleted, include_has_explicit_shared_members, include_mounted_folders, include_non_downloadable_files, recursive |
move
| Parameter |
Type |
Default |
Details |
path |
string |
"" |
required |
toPath |
string |
"" |
required |
Resource: search
query
| Parameter |
Type |
Default |
Details |
query |
string |
"" |
required |
fileStatus |
options |
"active" |
active, deleted |
returnAll |
boolean |
false |
|
limit |
number |
100 |
|
simple |
boolean |
true |
|
filters |
collection |
{} |
keys: file_categories, file_extensions, path |
Common Parameters
| Parameter |
Type |
Default |
Details |
authentication |
options |
"accessToken" |
accessToken, oAuth2 |
Parameter Details
filters children:
| Parameter |
Type |
Default |
Details |
file_categories |
multiOptions |
[] |
multi: audio, document, paper, folder, image, other, pdf, presentation, ... (10 total) |
file_extensions |
string |
"" |
|
path |
string |
"" |
|
Example
NODE "dropbox" @dropbox AS "Dropbox" {
resource: "file",
operation: "create",
path: {{ $json.path }},
toPath: {{ $json.toPath }},
binaryPropertyName: {{ $json.binaryPropertyName }}
}