This guide shows you how to update and use properties of your HubSpot contacts within your Treble conversations. This will allow you to create more personalized and automated conversations.
hubspot_
followed by the internal name of the property in HubSpot. For example, if the internal name of the property is name
, the variable name will be hubspot_name
.
country
property.country
property is country
. Therefore, if you want to make changes to a HubSpot contact’s country through their response in a Treble conversation, the variable name will be hubspot_country
.
Although in this example, the internal value of the property is the same as the property name, this will not always be the case. For example, for the firstname
property, the internal name of the property is firstname
. Therefore, the variable name to use in Treble will be hubspot_firstname
.
Property | Value | Internal Name (HubSpot) |
---|---|---|
First Name | John | firstname |
Phone | 3123456789 | phone |
Last Purchase Date | 2025-03-28 | last_purchase_date |
firstname
property to greet the customer by their name. Additionally, you can use the last_purchase_date
property to ask them about their last purchase.
Given the internal name of the HubSpot variable, let’s review the table above again and replace the internal name of the property with the variable name.
Property | Value | Internal Name (HubSpot) | Variable Name (Treble) |
---|---|---|---|
First Name | John | firstname | hubspot_firstname |
Phone | 3123456789 | phone | hubspot_phone |
Last Purchase Date | 2025-03-28 | last_purchase_date | hubspot_last_purchase_date |
{{}}
. For example, to greet the customer by their name, we can use the variable {{hubspot_firstname}}
.