Lead Forensics integration
This documentation outlines how to integrate Lead Forensics IP identification data with AB Tasty for targeted B2B personalization campaigns.
Lead Forensics identifies visiting companies by matching visitor IP addresses to their proprietary business IP database. This enables recognition of company visitors even without form submissions, which can then be leveraged in AB Tasty for targeted campaigns.
This integration enables powerful B2B personalization by revealing anonymous site visitors and passing company-level data to AB Tasty as custom variables. This approach can unlock high-impact campaigns and help shorten sales cycles
Important consideration before you start
Accuracy: IP-based recognition has limitations, especially with remote work and VPNs. Expect 20–40% match rates
Privacy: Ensure GDPR and data protection compliance. Avoid using personal data without explicit consent
Timing: Verify Lead Forensics data is available before AB Tasty evaluates targeting rules
Implementation
Push Data to AB Tasty
Use AB Tasty's API to send the Lead Forensics data as custom variables:
javascriptUnwrapCopyif (window.leadForensicsData) {
ABTasty.API.addGlobalData('leadForensicsCompany', window.leadForensicsData.companyName);
ABTasty.API.addGlobalData('leadForensicsCompanyId', window.leadForensicsData.companyId);
ABTasty.API.addGlobalData('leadForensicsIndustry', window.leadForensicsData.industry);
}
Exemple
Goal: Show custom banners to target accounts
Implementation:
Lead Forensics identifies the visitor from "BigBank PLC"
The company name is pushed to AB Tasty
AB Tasty campaign targets
leadForensicsCompany === "BigBank PLC"
Visitor sees personalized message: "Welcome BigBank team! Here's an exclusive offer for you."
Troubleshooting
Confirm Lead Forensics data loads before AB Tasty scripts execute
Verify variables are correctly added via
ABTasty.API.addGlobalData
Double-check targeting logic and campaign values
Last updated
Was this helpful?