SendGrid Integration

Connect SendGrid email templates and activity to Metalogue

SendGrid Integration

Connect your SendGrid account to index email templates and activity.

Quick Start

const connector = await client.createConnector({
  connector_type: 'sendgrid',
  display_name: 'Company SendGrid',
  credentials: {
    api_key: 'SG.xxxxxxxxxxxx',
  },
});

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

Synced Content

Content TypeIndexed Fields
Templatesname, content
Campaignsname, subject
Contactsemail, custom fields

Configuration

{
  "settings": {
    "sync_templates": true,
    "sync_contacts": true
  }
}

Next Steps