hubspot-known-pitfalls
Installation
SKILL.md
HubSpot Known Pitfalls
Overview
Ten real-world HubSpot API anti-patterns with correct alternatives, covering authentication, rate limits, search, associations, and data handling.
Prerequisites
- Access to HubSpot integration codebase
- Understanding of HubSpot CRM v3 API
Instructions
Pitfall 1: Using Deprecated API Keys
// BAD: API keys were deprecated in 2022 and removed from SDK v10+
const client = new hubspot.Client({ apiKey: 'your-api-key' }); // REMOVED
Related skills