Visitor data
Identified Visitor data
The Send2CRM service allows configuring custom values for personalization. These are returned with the response each time the visitor update is sent. For example, the Salesforce package may map Lead or Contact field values.
These custom values are stored in the data property of the Visitor object.
The Visitor can access any personalization values using their browser inspector. Do not map sensitive information that you don’t want the visitor to see.
All of the functionality below works for any visitor, but for an Anonymous Visitor you will only have access to the website data set.
Set Segments from Personalized Data
You can use visitor data to determine when Segments should be applied.
// Apply the Personalization Segment 'IS_CONTACTED' when the Visitor has a recorded phone call.
send2crm.personalization.setSegmentWhen('IS_CONTACTED', function(visitor) {
return Boolean(visitor.data.callDate);
});
Access Personalized Data Directly
window.addEventListener('load', (evt) => {
// Display a welcome back message on page load.
let visitorName = send2crm.analytics?.visitor.data.firstName;
if (visitorName) {
alert('Welcome back, ' + visitorName + '!');
}
});
Custom data
Custom personalization data can be set for the current visitor by calling the Send2CRM library function:
send2crm.personalization.setData('firstName', 'John');
Listen for changes
Subscribe to the send2crmDataChanged
event to be notified when Send2CRM personalization data changes.
See Personalization Events for more details.