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 Type | Indexed Fields |
|---|---|
| Files | name, content (text) |
| Folders | name, path |
| Shared Links | name, url |
| Paper Docs | title, content |
Configuration
{
"settings": {
"paths": ["/Documents", "/Projects"],
"file_extensions": [".md", ".txt", ".pdf"],
"include_shared": true
}
}
