Dealfront Leadfeeder

Updated by Ole Dallerup

Dreamdata comes with built-in functionality to collect intent data for all your visitors. However, using Dealfront Leadfeeder, you should improve the data quality and coverage by parsing the Dealfront Leadfeeder intent data to Dreamdata. When Dreamdata and Dealfront Leadfeeder intent data give a result, Dealfront Leadfeeder data will be used.

The script below requires you to set up Dreamdata tracking and the Dealfront Leadfeeder script while using the Javascript Object Connector. You can add the script to your website's header or load it through Google Tag Manager.

<script type="text/javascript">
window.analytics.ready(function () {
if (window.discover && window.discover.meta.status === 200)
{
var reveal = window.discover.data.company;
analytics.group(null, {
website: reveal.domain,
source: "dealfront",
name: reveal.name || undefined,
industry: reveal.industries.name || undefined,
number_of_employees: reveal.employees_category || undefined,
annual_revenue: reveal.revenue.amount || undefined,
});
}
});
</script>


How did we do?