Hey everyone, I am facing this particular issue and can’t figure out how to do it.
I want the HubSpot module to trigger only if a particular contact property on HubSpot is updated.
Basically, if the “lead status” property is updated, then based on the status, I have routers setup.
Currently, the automation triggers whenever anything is updated on a contact and this is causing a lot of problems as I want the automation to start only if the “Lead Status” property is changed and nothing else.
Is there any solution to this?
Hello @Fahad_Sheji nice to meet you.
You can try to build a custom app in HubSpot Developer account and use a webhook as trigger in Make.com and after that you can follow this steps:
Trigger HubSpot webhook on custom properties:
- Get the Developer Account API Key
- Get the App ID from the Developer Account App link
- Get the property ID from the main HubSpot environment Setting/Properties
- Run this Post with an HTTP module to add the subscription:
curl --request POST
–url ‘https://api.hubapi.com/webhooks/v3/{HUBSPOT_DEVELOPER_APP_ID}/subscriptions?hapikey={HUBSPOT_DEVELOPER_API_KEY}’ \
–data ‘{“active”: true, “eventType”: “{OBJECT_TYPE}.propertyChange”, “propertyName”: “{PROPERTY_NAME}” }’
Please follow this documentation: HubSpot CRM (make.com)
Don’t hesitate to contact us if you require further assistance.
//VLAD
1 Like