Asana Integration

Connect Asana tasks and projects to Metalogue

Asana Integration

Connect your Asana workspace to index tasks, projects, and team updates.

Quick Start

const connector = await client.createConnector({
  connector_type: 'asana',
  display_name: 'Company Asana',
  credentials: {
    access_token: 'xxxxxxxxxxxx',
  },
});

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

Synced Content

Content TypeIndexed Fields
Tasksname, notes, comments
Projectsname, notes
Portfoliosname, description

Configuration

{
  "settings": {
    "workspaces": ["workspace-id"],
    "include_completed": false,
    "sync_attachments": true
  }
}

Next Steps