Recent changes every integrator should know
Video coming soon
No YouTube video has been added yet.
Paul and Buzco go hands-on with the latest HubSpot API changes: new endpoints, deprecations, and the patterns that make integrations more resilient. Includes a starter repo to follow along.
Key ideas
Show notes
The HubSpot API keeps evolving, and integrators who don't keep up ship brittle code. Paul and Buzco walk through the recent changes that matter, with real examples and a starter repo you can clone to try them yourself.
Timestamps
Quotable
“The difference between a demo integration and a production one is how it behaves when things go wrong.”
— Buzco Stanislav
Full transcript
Paul: APIs are a contract, and HubSpot updates that contract regularly. If you're not tracking the changelog, you're one deprecation away from a broken integration and a bad Monday.
Buzco: The thing people get wrong is treating the happy path as the whole path. Real traffic means rate limits, retries, and partial failures. Your client has to expect all of it.
Paul: So in the starter repo we build in retries with backoff and proper error handling from the first commit. Not as a cleanup step later, as the foundation.
Buzco: Because the difference between a demo integration and a production one is almost entirely how it behaves when things go wrong.
Related links