Trello Integration

Connect Trello boards and cards to Metalogue

Trello Integration

Connect your Trello workspace to index boards, lists, and cards.

Quick Start

const connector = await client.createConnector({
  connector_type: 'trello',
  display_name: 'Company Trello',
  credentials: {
    api_key: 'xxxxxxxxxxxx',
    token: 'xxxxxxxxxxxx',
  },
});

await client.syncConnector(connector.connector_id, true);

Synced Content

Content TypeIndexed Fields
Boardsname, description
Cardsname, description, comments
Listsname
Checklistsitems

Configuration

{
  "settings": {
    "boards": ["board-id-1", "board-id-2"],
    "include_archived": false,
    "sync_attachments": true
  }
}

Next Steps