Send Converted Experience Examples

After a user has received and/or interacted with your Experience payload (or if they didn't), you will want to call one of the following methods to let the API (and your reporting dashboard) know what happened after the user received it.

Experience experience = incoming experince;            
	experience.sendConvertedExperience(Experience.ConvertedAction.Clicked);             
	experience.sendConvertedExperience(Experience.ConvertedAction.Clicked,true);            
	experience.sendConvertedExperience(Experience.ConvertedAction.Watched, true,
        	FMConvertedValueType.Seconds, "30");            
	experience.sendConvertedExperienceWithCustomAction("Some custom action taken",
        	true, Experience.ConvertedValueType.Custom, "value");            
	experience.sendConvertedExperienceWithCustomActionAndValueType("Some custom action
        	taken", true, "Some custom value type", "value"); 
	experience.sendConvertedExperienceWithCustomValueType(Experience.ConvertedAction.Shared,
		  true, "With", "Facebook friend");