1 min read
5 Powerful Reasons to Integrate HubSpot and SAP
If you’re using SAP, along with a separate CRM, you may be missing out on powerful efficiencies and more importantly, revenue. Moving to HubSpot and...
In today’s digitally connected world, businesses that want to streamline their operations and enhance user experiences must create seamless integrations between their different systems and platforms. HubSpot, a leading customer relationship management (CRM) platform, offers powerful tools for building these types of integrations. However, developing highly effective integrations often requires a multi-faceted approach that addresses both real-time user interactions and efficient background processing.
This post delves into two key strategies for building robust HubSpot integrations:
Understanding each approach and potentially combining them can result in developers creating HubSpot integrations that are responsive to user needs, scalable, and resource-efficient. Whether you’re looking to enhance your CRM’s functionality with custom UI elements or establish seamless data flows between HubSpot and external systems, this guide will provide you with the knowledge and tools to achieve your integration goals.
Let’s explore how to harness the power of HubSpot’s development ecosystem to build integrations that significantly improve your business processes and elevate user experiences.
First, we look at common attributes relating to both architectures
About User Action-Based Integration
The attributes mentioned in 4, 5 & 6 are contingent on the server receiving the API calls. Most platforms can scale to thousands of API calls. However, at high volumes, user driven actions could lead to long running workflows or short running workflows. Deep understanding of the business requirements and the platforms involved will help drive the decision on whether this particular workflow is best served by a User driven architecture or a hybrid which we will discuss later. The reason for the distinction is important.
For example, consider two buttons on a screen. One button’s action loads a view of a table in another platform while the other button’s action downloads the table. The API call to view the table may take milliseconds to display to the user and falls well within the jurisdiction of User-driven architectures.
Now consider the button for downloading the table. An intelligent integration will determine that the file is too large to load in the browser in a reasonable amount of time. In this case, a best practice is to use a request-response flow where the user gets an initial notification that the process has begun, and another when the process is done, and the table is ready for the user to save. This scenario exemplifies the distinction between user and event driven integration.. Some user driven actions might not completely finish and as such they benefit from a hybrid scenario which we will get into below.
About Event-Driven Integration
The attributes in 2 & 7 show hybrid scenarios of the event-driven architecture. In these attributes, we see how we can improve the overall user experience even with event-driven architecture where the user is not readily present or is present but expects some confirmation that a task is done. The use of email and alerts can be useful in providing feedback to the user and manage their expectations, and improve their experience.
Hybrid
Now let us talk about the hybrid scenarios. Most architectures employ a hybrid approach in order to provide excellent user experience. A hybrid scenario combining user action-based and event-driven approaches can provide the benefits of both architectures. This approach can offer real-time responsiveness when needed while also ensuring efficient background processing for larger operations.
It typically manifests like this
The user will usually start the process. Like clicking a button to generate a report or download a table as a spreadsheet. The architecture has a duty to provide real-time updates for critical or time-sensitive data or specified data.
The architecture will use scheduled events to handle regular (there is always some form of frequency involved), full synchronizations or perform some action to ensure overall data consistency.
The architecture can manage and sync change events for near-real-time updates without constant polling.
There will be a queue-based system that provides a buffer for high-volume operations and improves fault tolerance within the architecture
There is a datastore to store the event state so it can continue if needed or know where to pick up from when it starts running.
As solution providers, how can we know when to employ a user driven architecture or an event driven architecture or even when to blend them into a hybrid to get the both architectures? It boils down to asking the right questions. I have listed out 10 questions to prod a new case with.
1 min read
If you’re using SAP, along with a separate CRM, you may be missing out on powerful efficiencies and more importantly, revenue. Moving to HubSpot and...
1 min read
For marketers, clean customer data is crucial for optimizing your budget, allocating resources effectively, and building lasting customer...