
Zoho Forms
Learn how to integrate Zoho Forms with Post Affiliate Pro for seamless affiliate management. Simplify data collection, automate workflows, and track sales with ...

Get your
33% off
+ free AI Agent

Integrate HubSpot leads with Post Affiliate Pro to track custom form submissions and lead commissions. Learn how to implement sale and click tracking for effective affiliate management.
Besides other features, HubSpot offers you a way to track custom forms. The integration of these forms will help you track lead commissions.
The integration uses the form’s ‘onBeforeFormSubmit’ function.
The standard form code looks like this:
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/embed/v2.js"></script>
<script>
hbspt.forms.create({
portalId: "1234567",
formId: "123c30ab-f09e-4c9a-ae7f-123e456f7f89"
});
</script>
The sale (lead) tracking code will be placed to the ‘onBeforeFormSubmit’ function mentioned above, like this:
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/embed/v2.js"></script>
<script>
hbspt.forms.create({
portalId: "1234567",
formId: "123c30ab-f09e-4c9a-ae7f-123e456f7f89",
onBeforeFormSubmit: function ($form, submissionValues) {
var email = '';
submissionValues.forEach(function(currentValue, index, arr){
if (currentValue.name == "email") {
email = currentValue.value;
}
});
var sale = PostAffTracker.createSale();
sale.setOrderID(email);
sale.setProductID('__Form name/Id here__');
sale.setData1(email);
PostAffTracker.register();
}
});
</script>
In case you need help with this sale/lead tracking code, feel free to get in touch with us.
Do not forget this important step. The code added to HubSpot forms requires the click tracking code to be present in the same page. Add the click tracking code anywhere to the page with your HubSpot form – it does not matter if you place it before or after the HubSpot form’s code.
Lucia is a talented content editor who ensures the seamless publication of content across multiple platforms.

Experience seamless affiliate tracking and integration with HubSpot leads. Start your free trial today and optimize your affiliate network.

Learn how to integrate Zoho Forms with Post Affiliate Pro for seamless affiliate management. Simplify data collection, automate workflows, and track sales with ...

Learn how to integrate Calendly with Post Affiliate Pro for seamless scheduling automation and affiliate tracking. Discover features, setup steps, pros, cons, p...

Learn how to track affiliate commissions effectively with Post Affiliate Pro. Discover automatic conversion tracking, real-time reporting, and commission calcul...
Cookie Consent
We use cookies to enhance your browsing experience and analyze our traffic. See our privacy policy.