APIs & Integrations

ansh1709
Member

Unable to add CRM property to show in Contacts object

SOLVE

I'm trying to use the below code to update the "Title" CRM property in contacts object. But it just does not work. 

 

 

_hsq.push(["identify", {
    email: 'hello@test.com',
    Title: 'Test'
}]);

 

 

I have gone to Settings > Properties and created a property called "Title" in Hubspot which is a single-text field type (string).

 

The above ode creates a contact with the email hello@test.com, but it does not populate the Title property. 

 

I've tried all small things that have come to my head to get this to work, but it just does not.

0 Upvotes
1 Accepted solution
alyssamwilie
Solution
Recognized Expert | Elite Partner
Recognized Expert | Elite Partner

Unable to add CRM property to show in Contacts object

SOLVE

@ansh1709 Can you check that you are correctly using the Internal Name? Unless you specifically edited the Internal Name (not just the Property Label) these would normally default to lowercase.

screenshot-app_hubspot_com-2025_01_09-08_32_24.png

 

_hsq.push(["identify", {
    email: 'hello@test.com',
    title: 'Test'
}]);

 

If this answer solved your question, please mark it as the solution.

Alyssa Wilie Profile Image

Alyssa Wilie

Web Developerat Lynton

Learn HubL | Get Marketing Insights

HubSpot Elite Solutions Partner
Lynton's HubSpot theme Rubric now available. Click to download.

View solution in original post

1 Reply 1
alyssamwilie
Solution
Recognized Expert | Elite Partner
Recognized Expert | Elite Partner

Unable to add CRM property to show in Contacts object

SOLVE

@ansh1709 Can you check that you are correctly using the Internal Name? Unless you specifically edited the Internal Name (not just the Property Label) these would normally default to lowercase.

screenshot-app_hubspot_com-2025_01_09-08_32_24.png

 

_hsq.push(["identify", {
    email: 'hello@test.com',
    title: 'Test'
}]);

 

If this answer solved your question, please mark it as the solution.

Alyssa Wilie Profile Image

Alyssa Wilie

Web Developerat Lynton

Learn HubL | Get Marketing Insights

HubSpot Elite Solutions Partner
Lynton's HubSpot theme Rubric now available. Click to download.