apollo-migration-deep-dive

Featured

Comprehensive Apollo.io migration strategies. Use when migrating from other CRMs to Apollo, consolidating data sources, or executing large-scale data migrations. Trigger with phrases like "apollo migration", "migrate to apollo", "apollo data import", "crm to apollo", "apollo migration strategy".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Apollo Migration Deep Dive ## Current State !`npm list 2>/dev/null | head -10` ## Overview Migrate contact and company data into Apollo.io from other CRMs (Salesforce, HubSpot) or CSV sources. Uses Apollo's **Contacts API** for creating/updating contacts and **Bulk Create Contacts** endpoint for high-throughput imports (up to 100 contacts per call). Covers field mapping, assessment, batch processing, reconciliation, and rollback. ## Prerequisites - Apollo master API key (Contacts API requires master key) - Node.js 18+ - Source CRM export in CSV or JSON format ## Instructions ### Step 1: Define Field Mappings ```typescript // src/migration/field-map.ts interface FieldMapping { source: string; target: string; // Apollo Contacts API field transform?: (v: any) => any; required: boolean; } // Salesforce -> Apollo const salesforceMap: FieldMapping[] = [ { source: 'FirstName', target: 'first_name', required: true }, { source: 'LastName', target: 'last_name', required: true }, { source: 'Email', target: 'email', required: true }, { source: 'Title', target: 'title', required: false }, { source: 'Phone', target: 'phone_number', required: false }, { source: 'Company', target: 'organization_name', required: false }, { source: 'Website', target: 'website_url', required: false, transform: (url: string) => url?.startsWith('http') ? url : `https://${url}` }, { source: 'LinkedIn', target: 'linkedin_url', required: false }, ]; // HubSpot -> Apollo co...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

hubspot-migration-deep-dive

Execute CRM data migration to HubSpot with batch imports and validation. Use when migrating from Salesforce/Pipedrive/spreadsheets to HubSpot, performing bulk data imports, or re-platforming to HubSpot CRM. Trigger with phrases like "migrate to hubspot", "hubspot data import", "salesforce to hubspot", "hubspot migration", "bulk import hubspot".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-upgrade-migration

Manage Apollo.io API upgrades and endpoint migrations. Use when upgrading Apollo API versions, migrating to new endpoints, or updating deprecated API usage. Trigger with phrases like "apollo upgrade", "apollo migration", "update apollo api", "apollo breaking changes", "apollo deprecation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-data-handling

Apollo.io data management and compliance. Use when handling contact data, implementing GDPR compliance, or managing data exports and retention. Trigger with phrases like "apollo data", "apollo gdpr", "apollo compliance", "apollo data export", "apollo data retention", "apollo pii".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesforce-migration-deep-dive

Execute Salesforce data migrations using Bulk API, Data Loader, and ETL patterns. Use when migrating data to/from Salesforce, performing org-to-org migrations, or re-platforming CRM data into Salesforce. Trigger with phrases like "migrate to salesforce", "salesforce data migration", "salesforce import data", "salesforce ETL", "CRM migration to salesforce".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-reference-architecture

Implement Apollo.io reference architecture. Use when designing Apollo integrations, establishing patterns, or building production-grade sales intelligence systems. Trigger with phrases like "apollo architecture", "apollo system design", "apollo integration patterns", "apollo best practices architecture".

2,266 Updated today
jeremylongshore