Add Follower
With this operation, the automation can add a follower to a person's record, which can be useful for relationship management, commercial follow-up or customer support.
The Add Follower operation allows one or more users of the Hablla platform to "follow" a person record. A follower is notified about important activities and updates related to that person, facilitating collaboration and keeping stakeholders informed.
Unlike the "Owner", who is usually the main point of contact, a follower can be a manager, a teammate, or any other user who needs to track the progress of a lead or customer without being directly responsible for them.
This action adds the user to the followers list, keeping existing ones.
How to Configure
In Hablla Studio, add the "People" block to your automation flow.
In the "Operation" field, select the "Add Follower" option.
In the "Person ID" field (
personId
), enter the identifier of the contact to be followed.In the "Follower" field, select the platform user who will start following this person.
Parameters
Person ID
Text
✅ Yes
The unique ID of the person (contact) to be followed.
Follower (follower
)
User List
✅ Yes
The platform user who will become a follower of this contact.
Structure (Using JSON)
The JSON request body must contain an array called followers
with the ID(s) of the user(s) to be added.
JSON
{
"followers": [
"user_id_xyz789"
]
}
🚀 Example Use Case
Goal: When a high-value deal (above R$ 10,000) is created, automatically add the sales manager as a follower of the person associated with the deal so they can track progress.
Create a flow with the "New Card Created" trigger.
Add a Condition (If) block to check if the deal value is greater than 10,000 (
{{trigger.card.value}} > 10000
).If the condition is true, add the "People" block with the "Add Follower" operation.
In the "Person ID" field, enter the variable for the person ID associated with the card (
{{trigger.person.id}}
).In the "Follower" field, select the sales manager user from the list.
With this automation, management has immediate visibility over the most important deals, allowing closer and more proactive monitoring without overburdening the seller with the need for manual reports.
Last updated
Was this helpful?