Box Integration

Connect Box files and folders to Metalogue

Box Integration

Connect your Box enterprise account to index files, folders, and collaboration content.

Quick Start

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

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

Synced Content

Content TypeIndexed Fields
Filesname, content (text)
Foldersname, path
Commentstext, author
Tasksmessage, due date

Configuration

{
  "settings": {
    "folders": ["folder-id"],
    "file_extensions": [".md", ".txt", ".pdf", ".docx"],
    "include_trashed": false
  }
}

Next Steps