Skip to main content

Report custom funnel event (ReportFunnelCustomEvent)

AndroidiOSWindows
If you are using Unreal Engine, see Unreal Engine SDK's ReportFunnelCustomEvent.

Business-side custom funnel events, report corresponding data to calculate funnel analysis conversion rate.The interface is called to report data after the corresponding code of each funnel event is executed.

Function Definition

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

Parameter Instructions

ParametersTypeExplanationNotes
l1_event_namestringPrimary event name (event category)Requir ed
l2_event_nameStringSecondary event name (specific location of the burying point)Required
error_codeintError code, default is 0, 0 for success, other error codes for failureOptional

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);