interface DropboxNodeParameters {
authentication?: "oAuth2" | "accessToken";
binaryData?: boolean;
binaryPropertyName?: string;
fileContent?: string;
fileStatus?: "deleted" | "active";
filters?:
| {
file_categories?: (
| "other"
| "video"
| "image"
| "document"
| "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?: boolean
Whether the data to upload should be taken from binary field
readonly binary Property Name?: string
Default: "data"
readonly file Content?: string
The 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"
| "image"
| "document"
| "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?: number
Max 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?: string
The path of file or folder to copy
readonly query?: string
The string to search for. May match across multiple fields based on the request arguments.
readonly resource?: "search" | "file" | "folder"
Default: "file"
readonly return All?: boolean
Whether to return all results or only up to a given limit
readonly simple?: boolean
Whether to return a simplified version of the response instead of the raw data Default: true
readonly to Path?: string
The destination path of file or folder
Means of authenticating with the service Default: "accessToken"