Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The S4S Cloud service allows configuring custom values for Personalizationpersonalization. These are returned with the response each time the Visitor visitor update is sent. For example, the Salesforce package may map Lead or Contact field values.

...

Note

The Visitor can access any Personalization personalization values using their browser inspector. Don’t Do not map sensitive information that you don’t want the Visitor visitor to see.

Info

All of the functionality below works for any Visitorvisitor, but for an Anonymous Visitors Visitor you will only have access to the website data set via the website.

Set Facets from Personalized

...

Data

You can use Visitor visitor data to determine when Facets should be applied.

Code Block
languagejs
// Apply the Personalization facet 'IS_CONTACTED' when the Visitor has a recorded phone call.
S4SCloud.personalization.setFacetWhen('IS_CONTACTED', function(visitor) {
  return Boolean(visitor.data.callDate);
});

Access Personalized

...

Data Directly

Code Block
window.addEventListener('load', (evt) => {
	// Display a welcome back message on page load.
	let visitorName = S4SCloud.analytics?.visitor.data.firstName;
	if (visitorName) {
		alert('Welcome back, ' + visitorName + '!');
	}
});

Custom data

Custom Personalization personalization data can be set for the current Visitor visitor by calling the S4S Cloud library function:

...