Mixpanel Integration

Connect Mixpanel events and funnels to Metalogue

Mixpanel Integration

Connect your Mixpanel project to index events, funnels, and user data.

Quick Start

const connector = await client.createConnector({
  connector_type: 'mixpanel',
  display_name: 'Company Mixpanel',
  credentials: {
    project_id: 'xxxxxxxxxxxx',
    api_secret: 'xxxxxxxxxxxx',
  },
});

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

Synced Content

Content TypeIndexed Fields
Eventsname, properties
Funnelsname, steps
Cohortsname, definition

Configuration

{
  "settings": {
    "events": ["Signup", "Purchase"],
    "date_range_days": 30
  }
}

Next Steps