Custom goals scoring
Discover how to set up and trigger custom goals in Umbraco Engage using C# code.
Last updated
Was this helpful?
Discover how to set up and trigger custom goals in Umbraco Engage using C# code.
Last updated
Was this helpful?
Was this helpful?
using Umbraco.Engage.Infrastructure.Analytics.Goals;
public class YourService
{
private IGoalService _goalService;
public YourService(IGoalService goalService) => _goalService = goalService;
public void TriggerGoal()
{
// Use the goalId from the code snippet above
_goalService.TriggerGoal(goalId: 37, value: 42);
}
}_goalService.TriggerGoal(pageviewGuid, goalId, value);