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 Type | Indexed Fields |
|---|---|
| Boards | name, description |
| Cards | name, description, comments |
| Lists | name |
| Checklists | items |
Configuration
{
"settings": {
"boards": ["board-id-1", "board-id-2"],
"include_archived": false,
"sync_attachments": true
}
}
