Skip to main content

ReportFunnelCustomEvent

AndroidiOSWindows
If you were looking for the method for use with Unreal Engine, see ReportFunnelCustomEvent for Unreal Engine SDK.

A project will be able to customize funnel events with this interface. Data reported by the client is used to calculate the conversion rate of the funnel analysis. The interface will be called after the code corresponding to each funnel event is executed to report data.

Function definition

public static void ReportFunnelCustomEvent(string l1_event_name,string l2_event_name, int error_code = 0)

Input parameters

ParameterTypeDescriptionRemark
l1_event_namestringcustom l1 event nameRequired
l2_event_namestringcustom l2 event nameRequired
error_codeinterror code, default value is 0.
0 denotes success, other values denote failure
Optional

Code sample

string l1_event_name = "l1_event_name";
string l2_event_name = "l2_event_name";
int error_code = 0;
INTLAnalytics.ReportFunnelCustomEvent(l1_event_name,l2_event_name, error_code);