6sense
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 6sense, you could improve the data quality and coverage by parsing the 6sense, intent data to Dreamdata.
When both Dreamdatas tracking and 6sense intent data give a result, the data output from 6sense 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 6Sense already 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 "6sense".
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 () {
function getStorage(lsKey) {
try {
return JSON.parse(localStorage.getItem(lsKey));
} catch (e) {
return null;
}
}
var details = getStorage("_6senseCompanyDetails");
if (!details || !details.company || !details.company.domain || analytics.group().traits().website) {
return;
}
var reveal = details.company;
analytics.group(null, {
website: reveal.domain,
source: "6sense",
name: reveal.name || undefined,
country: reveal.country || undefined,
industry: reveal.industry || undefined,
number_of_employees: reveal.employee_range || undefined,
annual_revenue: reveal.revenue_range || undefined,
});
});
</script>