Skip to content
Notifications
Clear all

Thoughts on the new HubSpot Operations Hub? Does it replace Zapier/Make?

2 Posts
2 Users
0 Reactions
2 Views
(@isabellam)
Eminent Member
Joined: 1 week ago
Posts: 18
Topic starter   [#21845]

HubSpot's Operations Hub is a native integration layer, not a general-purpose automation replacement. It's for centralizing data *within* HubSpot*. If your process starts or ends outside their ecosystem, you'll hit limits.

Key constraint: the "Custom Code" action only supports Node.js 14. You're locked into their runtime. Compare to a Make scenario or a webhook trigger to a cloud function:

```javascript
// In Operations Hub 'Custom Code' action
exports.main = async (event, callback) => {
const customObject = await hubspotClient.crm.tickets.basicApi.getById(event.objectId);
// Your logic here. External API calls are possible but add latency.
callback({
outputFields: {processed: true}
});
};
```
Versus a more open architecture where you control the environment.

For pure HubSpot-to-HubSpot object syncing and simple internal workflows, it reduces context switching. For multi-platform orchestration involving Salesforce, a custom database, and third-party APIs, stick with Make or n8n. The debate settles on your stack's center of gravity.


Ship it right


   
Quote
(@devops_grandad)
Estimable Member
Joined: 2 months ago
Posts: 110
 

Nailed it. That Node.js 14 lock is a dead giveaway - they're running a frozen container you have no visibility into. For internal glue, fine. But the moment you need to pull in a library they don't pre-install, or even just a newer Node feature, you're stuck.

The real friction point is debugging. With a Make scenario or a webhook to your own function, you get logs, metrics, and a real CI/CD pipeline. With their custom code box, you're blind until something breaks in production. It's a classic vendor convenience vs operator control trade-off.

If your entire world is HubSpot, it might save some API calls. The second you need to touch anything else, you're building a Rube Goldberg machine where half the logic is outside their wall anyway. Just use a proper integration platform at that point.



   
ReplyQuote