Demandbase
Intent data
Dreamdata has its own functionality to collect intent data from your website visitors combining it with your converted leads and contacts while enriching the company with industry, number of employees, etc.
With this data, you can report on intent data while segmenting across all customers using the enriched data. However, using Demandbase, you could improve the data quality and coverage by parsing the Demandbase, intent data to Dreamdata.
When both Dreamdatas tracking and Demandbase intent data give a result, the data output from Demandbase will be prioritized and used.
However, If you are using our v2 tracking you'll be able to see where the data originates from through the debugger. Click here for the v2 tracking
Requirements
- Your website must have Demandbase integrated before the Dreamdata Analytics script can successfully capture and transmit company intent data.
Step 1: Access Intent data
- Navigate to the Data Platform:
- Go to the "Data Platform" section in Dreamdata (located in the menu on the left side).
- Click on "Sources".
- Select your intent data
- Scroll down to "First-Party Intent Data"
- Click on "Demandbase".
Step 2: Setting it up
To set up the script correctly, you can add it using one of the following methods:
- Add the script to your website's header.
- Load it through Google Tag Manager below the Dreamdata tracking script.
<script type="text/javascript">
window.analytics.ready(function () {
if (!Demandbase && !Demandbase.Segments && !Demandbase.Segments.IsCompany && !Demandbase.Segments.CompanyProfile && analytics.group().traits().website) {
return;
}
var company = Demandbase.Segments.CompanyProfile;
if (!company.isp && !company.web_site){
return;
}
analytics.group(company.demandbase_sid, {
website: company.web_site,
source: "demandbase",
name: company.company_name || undefined,
country: company.country_name || undefined,
industry: company.industry || undefined,
number_of_employees: company.employee_count || undefined,
annual_revenue: company.annual_sales || undefined,
});
});
</script>