interface DropboxNodeParameters {
authentication?: "oAuth2" | "accessToken";
binaryData?: boolean;
binaryPropertyName?: string;
fileContent?: string;
fileStatus?: "deleted" | "active";
filters?:
| {
file_categories?: (
| "other"
| "video"
| "document"
| "image"
| "pdf"
| "folder"
| "audio"
| "paper"
| "presentation"
| "spreadsheet"
)[];
file_extensions?: string;
path?: string;
}
| {
include_deleted?: boolean;
include_has_explicit_shared_members?: boolean;
include_mounted_folders?: boolean;
include_non_downloadable_files?: boolean;
recursive?: boolean;
};
limit?: number;
operation?: | "create"
| "list"
| "delete"
| "upload"
| "query"
| "move"
| "copy"
| "download";
path?: string;
query?: string;
resource?: "search"
| "file"
| "folder";
returnAll?: boolean;
simple?: boolean;
toPath?: string;
}Properties§
§§§§§§§§§§§§§
readonly authentication?: "oAuth2" | "accessToken"§
readonly binary Data?: booleanWhether the data to upload should be taken from binary field
readonly binary Property Name?: stringDefault: "data"
readonly file Content?: stringThe text content of the file to upload
readonly file Status?: "deleted" | "active"The string to search for. May match across multiple fields based on the request arguments. Default: "active"
readonly filters?:
| {
file_categories?: (
| "other"
| "video"
| "document"
| "image"
| "pdf"
| "folder"
| "audio"
| "paper"
| "presentation"
| "spreadsheet"
)[];
file_extensions?: string;
path?: string;
}
| {
include_deleted?: boolean;
include_has_explicit_shared_members?: boolean;
include_mounted_folders?: boolean;
include_non_downloadable_files?: boolean;
recursive?: boolean;
}Default: {}
readonly limit?: numberMax number of results to return Default: 100 Type options: {"minValue":1}
readonly operation?:
| "create"
| "list"
| "delete"
| "upload"
| "query"
| "move"
| "copy"
| "download"Default: "upload"
readonly path?: stringThe path of file or folder to copy
readonly query?: stringThe string to search for. May match across multiple fields based on the request arguments.
readonly resource?: "search" | "file" | "folder"Default: "file"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly simple?: booleanWhether to return a simplified version of the response instead of the raw data Default: true
readonly to Path?: stringThe destination path of file or folder
Means of authenticating with the service Default: "accessToken"