Dropbox

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:

CategoryTools
Files & Folders10
Tool NameDescription
dropbox_list_folderList items in a folder
dropbox_get_metadataGet file or folder metadata
dropbox_searchSearch files/folders in Dropbox
dropbox_create_folderCreate a new folder
dropbox_deleteDelete a file or folder
dropbox_create_shared_linkCreate a shared link
dropbox_get_temporary_linkGet temporary download link
dropbox_get_account_infoGet current account info
dropbox_moveMove or rename a file/folder
dropbox_copyCopy a file/folder

Main Parameters

ParameterDescription
pathFile or folder path
querySearch query
from_pathSource path
to_pathDestination path

Prerequisites

  • emma account
  • Dropbox account
  • Dropbox access token

Setup

1. Install the package

npm install @duzzle/dropbox-integration

2. 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);

© 2026 Duzzle Inc. All rights reserved.