ActiveCampaign Integration

Connect ActiveCampaign contacts and automations to Metalogue

ActiveCampaign Integration

Connect your ActiveCampaign account to index contacts, campaigns, and automations.

Quick Start

const connector = await client.createConnector({
  connector_type: 'activecampaign',
  display_name: 'Company ActiveCampaign',
  credentials: {
    api_url: 'https://account.api-us1.com',
    api_key: 'xxxxxxxxxxxx',
  },
});

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

Synced Content

Content TypeIndexed Fields
Contactsemail, name, tags
Campaignsname, content
Automationsname, triggers
Dealstitle, value

Configuration

{
  "settings": {
    "sync_contacts": true,
    "sync_deals": true,
    "list_ids": [1, 2, 3]
  }
}

Next Steps