Figma Integration

Connect Figma files and comments to Metalogue

Figma Integration

Connect your Figma organization to index files, comments, and components.

Quick Start

const connector = await client.createConnector({
  connector_type: 'figma',
  display_name: 'Company Figma',
  credentials: {
    access_token: 'figd_xxxxxxxxxxxx',
  },
});

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

Synced Content

Content TypeIndexed Fields
Filesname, description
Commentstext, author
Componentsname, description
Projectsname

Configuration

{
  "settings": {
    "teams": ["team-id"],
    "sync_comments": true,
    "sync_components": true
  }
}

Next Steps