Manually segmenting users

While Nosto leverages customer attributes and behavioral signals to automatically segment users, there may be scenarios where you may want to explicitly segment users. You can do so by affixing a segment-code to the current user and then leverage Nosto's segmentation tool to segment users with that specified attribute.

Manual segmentation requires a backup segment to be created in Nosto first. The code must match in segment rule and in javascript. If no matching backup segment exists, adding a segment code to the visit will not produce the intended segmentation behavior.

nostojs(api => {
  api.addSegmentCodeToVisit('women');
});

The example above does not trigger a reload of all the placements. If you would like to reload all onsite content to reflect the new segment, you must explicitly reload it.

nostojs(api => {
  api.loadRecommendations();
});

Once you have done so, read our guide on segmenting users via custom eventsarrow-up-right.

Last updated

Was this helpful?