Dev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideProduct feedbackGitHubNuGetDev CommunitySubmit a ticketLog In

Integrate Demandbase

Integrate Optimizely Web Experimentation with Demandbase to create targeted B2B audiences and deliver personalized content to the companies you care about the most. Demandbase's technology allows you to do this on the very first visit to your website, before these companies have even identified themselves to you.

Enable Demandbase in Optimizely Web Experimentation

To enable the integration:

  1. Enter the required API key, which your Demandbase Customer Success Manager can provide.
  1. Click Save.

With the Demandbase integration enabled, Optimizely Web Experimentation deploys the Demandbase tag and fetch visitor data from Demandbase for each pageview.

Create an Optimizely Web Experimentation audience

Create an audience in Optimizely Web Experimentation based on company information in Demandbase. Or, add Demandbase conditions to an existing audience.

  1. Go to the Audiences dashboard > Create New Audience.
  1. Click Demandbase to see a full list of targeting conditions. Hover over the question mark to see a description.
  1. Drag a condition to select and complete the open fields. You may want to work with your Demandbase Customer Success Manager on the exact formatting to use for different fields.
  2. Click Save Audience. 

Here is an example of an audience with the following conditions:

Industry – Financial Services
Employee Range – Enterprise
Revenue Range – $2.5B - $5B OR Over $5B

Activation on first page visit

This integration works by asynchronously loading company data from Demandbase as the page is rendering and storing the data in the visitor's browser. This means that experiments trigger only when the visitor comes back to the page on their second page visit or later.

If you want to trigger an experiment on first page visit, you can tell Optimizely Web Experimentation to wait for company data from Demandbase to load using conditional activation.

In Optimizely Web Experimentation, activation modes are set at the page level.

  1. Create and set your page's activation mode to "Callback". Or, edit an existing page.
  2. Copy the following code (which makes sure that the experiment activates only after visitor data from Demandbase is available) and paste it into the Callback Function text box:
function callbackFn(activate, options) {  
  // Interval in ms for polling Demandbase visitor data  
  var POLL\_INTERVAL = 50;  
  // Max number of poll attempts  
  var MAX\_POLL\_COUNT = 5;  
  var pollCount = 0;  
  function poll() {  
    pollCount++;  
    if (window.optimizely &&  
        window.optimizely.get('visitor') &&  
        optimizely.get('visitor')\['vendor.demandbase'\] &&  
        !options.isActive) {  
      activate();  
    } else if (pollCount \< MAX\_POLL\_COUNT) {  
      setTimeout(poll, POLL\_INTERVAL);  
    }  
  }  
  poll();  
}

📘

Note

Conditional activation means that the experiment may trigger after all the content on the page has loaded, thus causing flicker.  If you want to prevent the experiment from triggering after a certain timeout, you can edit the POLL_INTERVAL and MAX_POLL_COUNT in the conditional activation code above.

For example, the current poll interval of 50 and max polls of 5 will ensure that Optimizely will not trigger the experiment after more than 200ms.