Pipedrive Integration

Connect Pipedrive deals and contacts to Metalogue

Pipedrive Integration

Connect your Pipedrive account to index deals, contacts, and activities.

Quick Start

const connector = await client.createConnector({
  connector_type: 'pipedrive',
  display_name: 'Company Pipedrive',
  credentials: {
    api_token: 'xxxxxxxxxxxx',
  },
});

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

Synced Content

Content TypeIndexed Fields
Dealstitle, value, notes
Personsname, email, notes
Organizationsname, notes
Activitiessubject, note

Configuration

{
  "settings": {
    "pipelines": ["pipeline-id"],
    "include_lost_deals": false
  }
}

Next Steps