Add custom scoring
The main two pillars of personalization that the Umbraco Engage offers are personas and customer journeys.
ICustomerJourneyGroupRepository _customerJourneyGroupRepository;
ICustomerJourneyService _customerJourneyService;
public MyController(
ICustomerJourneyGroupRepository customerJourneyGroupRepository,
ICustomerJourneyService customerJourneyService) {
_customerJourneyGroupRepository = customerJourneyGroupRepository;
_customerJourneyService = customerJourneyService;
}var customerJourneyGroup = _customerJourneyGroupRepository.GetAll().FirstOrDefault(group => group.Title == "Customer Journey");
var stepDo = customerJourneyGroup.Steps.FirstOrDefault(step => step.Title == "Do");Last updated
Was this helpful?