Skip to Content
IntegrationsSnitcher

Snitcher

In this guide, you’ll learn how to activate the Snitcher integration in Prepr CMS. This integration provides you with the website visitor’s company profile data you can use to create segments for personalization.

Introduction

Snitcher is a B2B website visitor identification platform that identifies anonymous companies visiting a website by name and tracks their behavior. You can integrate with Snitcher to create segments in Prepr based on the visitor’s company profile data.

Activating Snitcher integration to identify visitors

Activate Snitcher in Prepr

First, activate the Snitcher integration in Prepr as follows:

  1. Log in to your Prepr account and go to Settings → Integrations and choose Snitcher. Click the Activate button.

  2. Activate it by clicking the Try for free for 30 days button or contact our Sales team to activate the integration for longer than 30 days.

Snitcher app in Prepr

That’s it. You’ve connected Prepr to Snitcher making the company profile data available in your Prepr segments.

Get the Snitcher access token

You can get the Snitcher integration access token with the following steps:

  1. Sign in to your Snitcher dashboard and click the Settings icon on the bottom left.

    get access token

  2. Click the API token menu item on the left and click the Create token button and copy the token value to the clipboard.

Keep the access token available to use in the next step.

Add company data to customer profile

Now that you have the Snitcher access token , you can add the company data to the corresponding customer profile in Prepr as follows:

  1. Go to the code in your front end where the Snitcher tracking code was previously added.

  2. Add the following code snippet above the Snitcher tracking code.

    <!-- Snitcher analytics code --> <script> function sentToPrepr(identification) { // We want to ignore 'isp' type identifications if (identification && identification.type !== "isp") { var company = identification.company; prepr('event', 'Snitcher', company); } } window.SpotterSettings = { token: "<YOUR-SNITCHER-ACCESS-TOKEN>", callback: sentToPrepr, }; {/* Your Snitcher tracking code For example: !function(s,n,i,t,c,h){s.SnitchObject=i;s[i]||(s[i]=function(){ (s[i].q=s[i].q||[]).push(arguments)});s[i].l=+new Date;c=n.createElement(t); h=n.getElementsByTagName(t)[0];c.src='//snid.snitcher.com/0000000.js'; h.parentNode.insertBefore(c,h)}(window,document,'snid','script'); snid('verify', '0000000'); */} </script>
  3. Replace the <YOUR-SNITCHER-ACCESS-TOKEN> placeholder with the access token you created and copied in Snitcher.

When this code is deployed, the front end updates the customer profile for every web app visitor identified in Snitcher.

Include Snitcher segments in your Prepr segments

After activating the Snitcher integration, you can add segments based on Snitcher criteria.

  1. Go to Segments → + Add segment.

  2. In the default condition, click the view link to open the Filter options.

  3. Open the Snitcher tab and click the filter option you want to include, Industry Name, or Employee count in the segment.

Snitcher filter options

  1. You can then choose any of the values in the dialog window. Click Save to create the segment.

example Snitcher segments

Now, your Snitcher segments are available to use in adaptive content. Check out the Adaptive content doc for more details.

That’s it. The Snitcher integration is activated and you can create adaptive content for your B2B website visitors.

Last updated on