Dropbox Integration

Connect Dropbox files and folders to Metalogue

Dropbox Integration

Connect your Dropbox account to index files, folders, and shared content.

Quick Start

const connector = await client.createConnector({
  connector_type: 'dropbox',
  display_name: 'Company Dropbox',
});

const authUrl = await client.getOAuthUrl('dropbox');

Synced Content

Content TypeIndexed Fields
Filesname, content (text)
Foldersname, path
Shared Linksname, url
Paper Docstitle, content

Configuration

{
  "settings": {
    "paths": ["/Documents", "/Projects"],
    "file_extensions": [".md", ".txt", ".pdf"],
    "include_shared": true
  }
}

Next Steps