What can you do with it?
The Dropbox API allows you to manage files and folders in your cloud storage. You can upload and download files, create and organize folders, search for content, move files and folders, retrieve metadata, and handle all aspects of your file storage and organization with comprehensive cloud storage management.How to use it?
Basic Command Structure
Parameters
Required:action
- The action to perform (upload, download, list, create, move, search, delete)entity
- The entity type (file, folder)path
- File or folder path
mode
- Upload mode (add, overwrite, update)autorename
- Automatically rename if conflict existsrecursive
- Include subfolders in listingquery
- Search query stringmax_results
- Maximum number of search resultsinclude_media_info
- Include media metadata
Tools
Save File
Upload a file to Dropbox at the specified path. Parameters:path
(required) - Destination path for the filemode
(optional) - Upload mode: add, overwrite, update (default: add)autorename
(optional) - Automatically rename if file exists (default: true)mute
(optional) - Suppress notifications (default: false)strict_conflict
(optional) - Strict conflict detection (default: false)
Get File by Name
Download a file from Dropbox by specifying its path. Parameters:path
(required) - Path to the file to download
List Files
List the contents of a folder in Dropbox. Parameters:path
(required) - Path to the folder to listrecursive
(optional) - Include subfolders recursively (default: false)include_media_info
(optional) - Include media metadata (default: false)include_deleted
(optional) - Include deleted files (default: false)include_mounted_folders
(optional) - Include mounted folders (default: true)
Create Folder
Create a new folder in Dropbox. Parameters:path
(required) - Path for the new folderautorename
(optional) - Automatically rename if folder exists (default: false)
Move Folder
Move a folder to a new location in Dropbox. Parameters:from_path
(required) - Current path of the folderto_path
(required) - New path for the folderallow_shared_folder
(optional) - Allow moving shared folders (default: false)autorename
(optional) - Automatically rename if conflict exists (default: false)allow_ownership_transfer
(optional) - Allow ownership transfer (default: false)
Get Folder by ID
Retrieve metadata for a folder using its ID or path. Parameters:path
(required) - Path or ID of the folderinclude_media_info
(optional) - Include media metadata (default: false)include_deleted
(optional) - Include deleted status (default: false)include_has_explicit_shared_members
(optional) - Include sharing info (default: false)
Search Folders
Search for folders in Dropbox matching a query. Parameters:query
(required) - Search query stringpath
(optional) - Path to search within (default: entire account)max_results
(optional) - Maximum number of results (default: 20)file_status
(optional) - File status filter: active, deleted (default: active)filename_only
(optional) - Search filename only (default: false)
Delete Folder
Delete a folder in Dropbox using its path. Parameters:path
(required) - Path of the folder to delete