RollWorks

Updated by Ole Dallerup

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 RollWorks Site Traffic you could improve the data quality and coverage by parsing the RollWorks Site Traffic intent data to Dreamdata.

When both Dreamdatas tracking and RollWorks intent data give a result, the data output from RollWorks will be prioritzed and used.

Note: If you're utilizing Dreamdatas v1 tracking you won't be able to tell whether the data is coming from Clearbit or from Dreamdata's own tracking.

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 RollWorks already integrated before the Dreamdata Analytics script can successfully capture and transmit company intent data.

Step 1: Access Intent data

  1. Navigate to the Data Platform:
    • Go to the "Data Platform" section in Dreamdata (located in the menu on the left side).
    • Click on "Sources".
  2. Select your intent data
    • Scroll down to "First-Party Intent Data"
    • Click on "RollWorks".

Step 2: Setting it up

To set up the script correctly, you can add it using one of the following methods:

  1. Add the script to your website's header.
  2. Load it through Google Tag Manager below the Dreamdata tracking script.
<script type="text/javascript">
window.onB2BPersonalizationDataReady = function (data) {
if (!data || !window.analytics || analytics.group().traits().website || !data["domain"]) {
return;
}

analytics.group(null, {
website: data.domain,
source: "nextroll",
name: data.company_name || undefined,
industry: data.company_industry || undefined,
number_of_employees: data.company_size || undefined,
annual_revenue: data.company_revenue || undefined,
});
};
</script>


How did we do?