Dropbox
Upload, download, share, and manage files in Dropbox
Dropbox is a popular cloud storage and collaboration platform that enables individuals and teams to securely store, access, and share files from anywhere. Dropbox is designed for easy file management, syncing, and powerful collaboration, whether you're working solo or with a group.
With Dropbox in Sim, you can:
- Upload and download files: Seamlessly upload any file to your Dropbox or retrieve content on demand
- List folder contents: Browse the files and folders within any Dropbox directory
- Create new folders: Organize your files by programmatically creating new folders in your Dropbox
- Search files and folders: Locate documents, images, or other items by name or content
- Generate shared links: Quickly create shareable public or private links for files and folders
- Manage files: Move, delete, or rename files and folders as part of automated workflows
These capabilities allow your Sim agents to automate Dropbox operations directly within your workflows — from backing up important files to distributing content and maintaining organized folders. Use Dropbox as both a source and destination for files, enabling seamless cloud storage management as part of your business processes.
Integrate Dropbox into your workflow for file management, sharing, and collaboration. Upload files, download content, create folders, manage shared links, and more.
Upload a file to Dropbox
| Parameter | Type | Required | Description |
|---|
path | string | Yes | The path in Dropbox where the file should be saved (e.g., /folder/document.pdf) |
fileContent | string | Yes | The base64 encoded content of the file to upload |
fileName | string | No | Optional filename (used if path is a folder) |
mode | string | No | Write mode: add (default) or overwrite |
autorename | boolean | No | If true, rename the file if there is a conflict |
mute | boolean | No | If true, don't notify the user about this upload |
| Parameter | Type | Description |
|---|
file | object | The uploaded file metadata |
Download a file from Dropbox and get a temporary link
| Parameter | Type | Required | Description |
|---|
path | string | Yes | The path of the file to download (e.g., /folder/document.pdf) |
| Parameter | Type | Description |
|---|
file | object | The file metadata |
List the contents of a folder in Dropbox
| Parameter | Type | Required | Description |
|---|
path | string | Yes | The path of the folder to list (use "" for root) |
recursive | boolean | No | If true, list contents recursively |
includeDeleted | boolean | No | If true, include deleted files/folders |
includeMediaInfo | boolean | No | If true, include media info for photos/videos |
limit | number | No | Maximum number of results to return (default: 500) |
| Parameter | Type | Description |
|---|
entries | array | List of files and folders in the directory |
Create a new folder in Dropbox
| Parameter | Type | Required | Description |
|---|
path | string | Yes | The path where the folder should be created (e.g., /new-folder) |
autorename | boolean | No | If true, rename the folder if there is a conflict |
| Parameter | Type | Description |
|---|
folder | object | The created folder metadata |
Delete a file or folder in Dropbox (moves to trash)
| Parameter | Type | Required | Description |
|---|
path | string | Yes | The path of the file or folder to delete |
| Parameter | Type | Description |
|---|
metadata | object | Metadata of the deleted item |
Copy a file or folder in Dropbox
| Parameter | Type | Required | Description |
|---|
fromPath | string | Yes | The source path of the file or folder to copy |
toPath | string | Yes | The destination path for the copied file or folder |
autorename | boolean | No | If true, rename the file if there is a conflict at destination |
| Parameter | Type | Description |
|---|
metadata | object | Metadata of the copied item |
Move or rename a file or folder in Dropbox
| Parameter | Type | Required | Description |
|---|
fromPath | string | Yes | The source path of the file or folder to move |
toPath | string | Yes | The destination path for the moved file or folder |
autorename | boolean | No | If true, rename the file if there is a conflict at destination |
| Parameter | Type | Description |
|---|
metadata | object | Metadata of the moved item |
Get metadata for a file or folder in Dropbox
| Parameter | Type | Required | Description |
|---|
path | string | Yes | The path of the file or folder to get metadata for |
includeMediaInfo | boolean | No | If true, include media info for photos/videos |
includeDeleted | boolean | No | If true, include deleted files in results |
| Parameter | Type | Description |
|---|
metadata | object | Metadata for the file or folder |
Create a shareable link for a file or folder in Dropbox
| Parameter | Type | Required | Description |
|---|
path | string | Yes | The path of the file or folder to share |
requestedVisibility | string | No | Visibility: public, team_only, or password |
linkPassword | string | No | Password for the shared link (only if visibility is password) |
expires | string | No | Expiration date in ISO 8601 format (e.g., 2025-12-31T23:59:59Z) |
| Parameter | Type | Description |
|---|
sharedLink | object | The created shared link |
Search for files and folders in Dropbox
| Parameter | Type | Required | Description |
|---|
query | string | Yes | The search query |
path | string | No | Limit search to a specific folder path |
fileExtensions | string | No | Comma-separated list of file extensions to filter by (e.g., pdf,xlsx) |
maxResults | number | No | Maximum number of results to return (default: 100) |
| Parameter | Type | Description |
|---|
matches | array | Search results |
- Category:
tools
- Type:
dropbox