- Help Center
- Integrations
-
Getting Started
-
Configuration
- Targeting
- Split URL
- Product Testing
- Full Stack
- Experiment Management
- CSP Configuration
- Experiment Execution
- Reports
- Exit Popups
- GTM Integration
- Troubleshooting
- Performance Optimization
- Event-Triggered Changes
- Holdout Groups
- Split URL Pages
- URL Parameters
- DataLayer
- Menu Configurations
- Traffic Exclusion
- Experiment Scheduling
- Dynamic Element Changes
- Price Targeting
- Experience Scheduling
- Privacy
- Hash Changes
- Async Tracking
- Selective Installation
- CSS Selectors
- Vue.js Integration
- Page Content
- Multipage Split URL
- Organic Traffic
- Visual Editor
- Server-Side Testing
- Traffic Bucketing
- GDPR Warnings
- Statistical Confidence
- Browser Privacy
- Query Parameters
- Embedded Videos
- Tracking Code Execution
- Simultaneous Experiments
- Tags
- Deployments
- Disable Testing
- Locations
- Programmatic Bucketting
- Query Parameter Handling
- Convert Library
- Variation Previews
- Experiment Editing
- Opt-Out Script
- Data Reset
- Body Hiding
- Visit-Specific Variations
- Variation Styling
- Preview Issues
- Variation Editing
- Full-Site Testing
- Blinking Variations
- Cross-Domain Cookies
- Regex Support
- Conversion Tracking
- SPA Testing
- Project Setup
- Cross-Domain Tracking
- Geo-Targeting
- Analytics Tools
- Campaign Tags
- Previewing
- IDs
- Query String Targeting
- Bounce Rate Goals
- Bot Filtering
- Query String Variables
- Custom Audiences
- Redirects
- Baseline
- Tracking Code Location
- Secure Cookies
- AngularJS
- Cloudflare
- Code Installation
-
Track Goals
- Form Tracking
- Cookie Management
- iFrame Click Tracking
- Performance Optimization
- Revenue Tracking
- Interaction Goals
- Form Submissions
- Advanced Goals
- Lazy Loading
- Multi-Conversions
- URL Parameters
- Bounce Rate Goals
- DataLayer Integration
- Scroll Depth
- Social Interactions
- Page Views
- Marketo Forms
- Feature Analysis
- AJAX Forms
- Revenue Tracking via GTM
- Order Outliers
- Cumulative Revenue
- Goal Templates
- Adding Revenue Goals
- JS-Based Goals
- Goal Basics
- Google Analytics Goals
- Social Sharing
- Dynamic Goals
- Typeform Integration
-
Target Visitors
- Geolocation
- Interaction Goals
- Goal-Based Targeting
- Weather Targeting
- Cookie-Based Targeting
- Page Visits
- Audience Management
- Audience Segmentation
- Experiment Targeting
- Advanced Audience Creation
- Audience Templates
- Audience Creation
- Data Layer Integration
- Manual Activation
- JavaScript Conditions
- Device Targeting
- Language Targeting
- IP-Based Exclusion
- Visitor Management
- Page Tagging
- Cookies
-
Troubleshooting
- Google Warnings
- Visual Editor
- HTTPS Content
- Logs
- Support Options
- Bootstrap
- Cookie Blocking
- Change History
- Mobile Debugging
- AdWords
- Bot Exclusion
- Domain Issues
- Cloudflare Issues
- Monitoring
- Cloaking Penalties
- Goal Editor Issues
- Variations
- Snippet Performance
- Changes Not Saved
- Blocked Visual Editor
- Goal Testing
- Visual Editor Browsing
- Experiment Issues
- Installation Verification
- Data Leak Prevention
- Usage Limits
- Experiment Previews
- GA4 Revenue
- Chrome Debugger Logs
- SPA Errors
- Checkout JSON Error
-
Analyze Results
-
Integrations
- Google Analytics
- Cookie Consent Platforms
- Microsoft Clarity
- Plausible
- Marketo
- HubSpot
- Tealium
- Smartlook
- Klaviyo
- Salesforce CRM
- FullStory
- Snowplow Analytics
- Webflow
- GA4 Roles
- Amplitude
- Segment
- React
- BigCommerce
- WooCommerce
- Active Campaign
- Google Tag Manager
- Mixpanel
- Zapier
- Inspectlet
- Crazy Egg
- LanderApp
- Unbounce
- Instapage
- Drupal
- PrestaShop
- Magento
- Roistat
- Piano Analytics
- Heap Analytics
- Kissmetrics
- Mouseflow
- Adobe Analytics
- Clicky
-
Account Management
-
Developers
-
What's New
-
Common Questions
-
Shopify
Integrate Convert Experiences with 6sense API
THIS ARTICLE WILL HELP YOU:
- Convert-6sense Integration
- Add Tracking Code Snippets
- Test 6sense installation
- Activate Convert-6sense Integration
- Add the 6sense audience to your Experience
Convert-6sense Integration
6sense is a predictive prospect analysis and lead scoring software that gathers data on your prospective buyers, analyzes their requirements, and predicts their behavior across various stages of the buyer journey.
For each experiment, the integration uses page attributes to pass along the experiment name and variation name that the visitor is currently bucketed into (if any).
Also, Convert can query the data aggregated by 6sense and target based on this.
Add Tracking Code Snippets
Make sure the Convert tracking code and the 6sense auto event tracking code are installed on your page. Once you have added the codes to your website, you will be able to send Convert data to your 6sense account.
Test 6sense installation
Test that 6sense is properly installed on your site. Go to your browser console and paste the following code:
var visitorData = JSON.parse(localStorage._6senseCompanyDetails);
Then type:
visitorData;
It should return all the data available for you to target like this:
{
"company": {
"domain": "xxxxxx.io",
"name": "Apollo",
"region": "North America",
"country": "United States",
"state": "Texas",
"city": "Dallas",
"industry": "Software and Technology",
"country_iso_code": "US",
"address": "",
"zip": "",
"phone": "2023741312",
"employee_range": "20 - 49",
"revenue_range": "$5M - $10M",
"employee_count": "28",
"annual_revenue": "5285000",
"is_blacklisted": false,
"state_code": "09",
"industry_v2": [
{
"industry": "Software",
"subindustry": ""
},
{
"industry": "Information Technology",
"subindustry": ""
}
],
"sic_description": "Prepackaged Software",
"sic": "XXXXX",
"naics": "XXXX",
"naics_description": "Software Publishers"
},
"scores": [
{
"product": "myproduct",
"product_display_name": "My Product",
"intent_score": 45,
"buying_stage": "Awareness",
"profile_score": 84,
"profile_fit": "Strong"
}
],
"segments": {
"ids": [],
"names": [],
"list": []
},
"confidence": "Very High"
}
Activate Convert-6sense Integration
So, let's say that we want to target an experiment that targets all visitors that are on the "Awareness" buying stage.
Let's create an audience in Convert called "Awareness Stage". We are going to do it by adding a JS Condition with the following code:
(function() {
var visitorData = JSON.parse(localStorage._6senseCompanyDetails);
if(typeof(visitorData)=="undefined") {
convert_recheck_experiment(); return false;}
else return (visitorData.scores[0].buying_stage == "Awareness");
})()
The Audience should be configured like this:
The Audience Type we are going to set to Transient, as this is a data field that will change and we would want the visitor to no longer experience the same as he moves through the buying stages.
Add the 6sense audience to your Experience
Next, just add the audience to the experience you will like to target to this audience.
If you have any questions on how to use this, let us know in support, and we will gladly help you.