LogoLogo
  • LeadBoxer — Lead Data Platform —Documentation
  • 🛠️Getting Started
  • Lead Management Workflow
    • Cold outbound email campaigns
  • How does it all work?
  • 🏗️Fundamentals
    • Leads & Accounts
      • Lead card: Complete lead details in one page
      • Batch operations
    • LeadBoard
    • Reports
    • Definitions & Glossary
    • Elements
      • Filters
      • Segments
      • Workflow Automation
      • Notifications
      • Users
      • Datasets
      • Clients (agents)
      • Lists
      • Enrichment
      • Leadscore
      • Lead & Account Tags
      • Import & Export
        • Upload Leads
        • download data
        • LinkedIn Matched Audiences export
        • Custom Properties
        • LeadBoxer User Interface Placeholder Names
      • Roles & Permissions
  • 🧩Integrations
    • 🌐Website
      • Lead Tracking Pixel
      • WordPress plug-in
        • track my WordPress user logins?
      • Google Tag Manager (GTM)
      • Drupal module
      • Gravity Form Tracking
      • Change website content based on behaviour
      • Track meta data using JSON-LD
      • Cross device tracking
      • Tracking marketing campaign data (UTM tags)
      • UTM tags for Google Adwords
      • How to track user logins
      • Automatic form tracking
      • Manual form tracking
      • How to get (raw) lead data
      • Magento
      • Adobe Tag Manager
      • Unbounce landing pages
      • Tracking pixel into Wix
    • ✉️Email
      • Individual emails
        • Gmail Email tracking
        • G Suite email tracking
        • Official Outlook Add-in
        • Advanced Outlook Add-in
        • Manually Identify leads using email
        • Legacy Outlook plugin
        • Linkedin InMail or Invite Link Tracking
      • marketing emails
        • 1. Setup Tracking Pixel
        • 2. Track Email Opens
        • 3. Track Email Clicks
        • Mailchimp
        • HubSpot
        • Sharpspring
        • ActiveCampaign
        • Pipedrive Campaigns
        • Eloqua
        • Copernica
        • Intercom
        • Mailup
        • Brevo
        • Poppulo
        • Reply.io
        • Spotler mail+
        • Prospect.io
        • Woodpecker
        • Instantly
        • Mailerlite
        • Lemlist
        • Autopilot
        • Constant Contact
        • dotdigital
        • Apollo.io
        • LaPosta
        • Customer.io
        • Campaign Monitor
        • QuickMail
        • Outreach
        • Mail Merge (MS Word)
    • Other
      • Active Campaign
      • HubSpot
      • Marketo
      • LinkedIn
        • LinkedIn job titles search
      • Google Places
      • Calendly
      • How to get LeadBoxer data into Intercom
      • Zapier
        • Advanced Zapier usage
        • Zapier webhook
        • Connect Leadboxer to Pipedrive with Zapier
        • Connect Leadboxer to Slack with Zapier
        • Connect Leadboxer to Salesforce with Zapier
      • Pipedrive
        • Pipedrive Workflow Automation with LeadBoxer
      • Whatagraph
      • Google BigQuery
      • Single Sign On (SSO)
  • 🦮Guides
    • Creating your first Segment
    • Creating your first LeadBoard
    • How to add a user
    • How to upload a List (ABM)
    • How to add a datasets
    • How to create a notification
    • How to set your Leadscore
    • How to hide & unhide Leads
    • Filter Leads from ad campaigns
    • How to create a Workflow Automation
    • How to mask IP addresses
  • 🏆Solutions
    • Lead Identification
    • Lead Qualification
    • Lead Managment
  • Extras
    • Changelog
    • Email tracking info
    • linkedIn industries
    • LeadBoxer reseller getting started
    • How to contact leads
    • LeadBoxer cookies
  • Terms of Service
  • Privacy Policy
Powered by GitBook
On this page

Was this helpful?

  1. Integrations
  2. Other

HubSpot

PreviousActive CampaignNextMarketo

Last updated 1 year ago

Was this helpful?

In this document you will find the steps needed to enable the HubSpot Integration

Description: The LeadBoxer HubSpot integration is a so-called two-way-sync between the 2 platforms:

  1. We collect contact details from HubSpot

  2. Add these details to LeadBoxer

  3. We push enriched data back into HubSpot

What are the main benefits?

  • Create better performing (email) campaigns in HubSpot by using additional firmographic data when creating segments to deliver differentiating or customised messages

  • Let LeadBoxer fill in the gaps from HubSpot Business Insights. Local and smaller organisations are notably often not identified and enriched

  • Improve linking to associated companies by enriching your contacts with their company domain name (even if they used a public email address like gmail.com)

  • Enable LeadBoxer to Identify known contacts to better filter, or segment out various groups within your audience. Eg: Identify new business vs upsell opportunities

How does the integration work:

We grab the HubSpot cookie ID from your website visitors, and use this to lookup the contacts in HubSpot. For existing contacts (ie not anonymous web visitors), we collect the contact details (name, email, company, etc) and add this to the Leads in LeadBoxer for use in our Firmographic enrichment process. Any enriched field can then be pushed back to update these Hubspot contacts.

Additionally, you can define any fields that you want to sync back and forth between the LeadBoxer and HubSpot platforms. To get started, let us know your fields and we will setup mapping. By default we enable First Name, Last Name, Email and Company Name. Recommended fields are Company Size, Industry and Domain, however we can add as many fields as you like.

How to enable:

  1. Log into your LeadBoxer account as admin and go to the HubSpot Integrations page.

  2. Click on the Enable Integration button and select the HubSpot account you want to connect to.

  3. authorise with your HubSpot Admin credentials

  4. Enable the integration, select the dataset you want to connect to and click save.

  5. Optionally, if you have multiple teams configured in HubSpot, and you want us to only sync contacts from a specific team, you can enter the team Id's here.

Please let us know if you have any questions or remarks.

Track HubSpot forms

If you would like to track your HubSpot forms, here is how you can do it:

Requirements:

  • Embedded Hubspot Form

  • LeadBoxer account & pixel

In this example we will only push the email value to LeadBoxer and associate this with the user-id from LeadBoxer

<script>
  hbspt.forms.create({
	region: "na1",
	portalId: "123",
	formId: "abc",
	onFormSubmit: function($form) {
		setTimeout(function(){   // we add a small delay 
			var email = $form.find('input[name="email"]').val();
			var userId = ot_uid();	        // define userID
		
			// Construct API call to add lead tag to the visitor
			var url = "https://log.leadboxer.com/?si=my-dataset-id&ti=Form-Submit&uid=" + userId + "&email=" + email;
  
			// send the data to the LeadBoxer API
			fetch(url,{mode: 'no-cors'});			
 		}, 500); // end of timeout function			
	}
});
</script>

Obviously you need to replace the various values with your own:

  • form-field-name

  • portalId

  • formId

  • my-dataset-id

🧩