ZoomInfo WebSights
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 ZoomInfo WebSights you could improve the data quality and coverage by parsing the ZoomInfo WebSights intent data to Dreamdata.
When both Dreamdatas tracking and ZoomInfo WebSights intent data give a result, the data output from ZoomInfo WebSights 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
Step 1: Check that you've completed the Requirements
- Your website must have ZoomInfo already integrated before the Dreamdata Analytics script can successfully capture and transmit company intent data.
- You must enable Website Personalization in your Websights settings. This is required in order for the Dreamdata script to work since it lets data be stored in local storage and allows us to access the data from there. For a step-by-step on how to enable this go to page 11 here.
Step 2: 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 "ZoomInfo".
Step 3: 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 data = getStorage("_ziVisitorInfo");
if (!data || data.status !== 'success' || !data.ziDetails || !data.ziDetails.website || analytics.group().traits().website) {
return;
}
var reveal = data.ziDetails;
analytics.group(null, {
website: reveal.website,
source: "zoominfo",
name: reveal.companyName || undefined,
country: reveal.country || undefined,
industry: reveal.primaryIndustry || undefined,
number_of_employees: reveal.employeeCount || undefined,
annual_revenue: reveal.revenue || undefined,
});
});
</script>