Dropbox
Cloud storage management with Dropbox
With emma's Dropbox integration, you can manage files and folders, create shared links, move/copy content, and more. Automate your Dropbox workflow with comprehensive file management tools.
Features
Dropbox_Operator supports the following 10 tools:
| Category | Tools | ||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Files & Folders | 10 | ||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||
Main Parameters
| Parameter | Description |
|---|---|
| path | File or folder path |
| query | Search query |
| from_path | Source path |
| to_path | Destination path |
Prerequisites
- • emma account
- • Dropbox account
- • Dropbox access token
Setup
1. Install the package
npm install @duzzle/dropbox-integration2. Initialize
import { DuzzleDropbox } from '@duzzle/dropbox-integration';
const dropbox = new DuzzleDropbox({
apiKey: process.env.DUZZLE_API_KEY,
dropboxToken: process.env.DROPBOX_ACCESS_TOKEN
});3. List Folder
// List folder contents
const items = await dropbox.listFolder({
path: '' // Root folder
});
console.log('Entries:', items.entries);