Report custom funnel event (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
| Parameters | Type | Explanation | Notes |
|---|---|---|---|
| l1_event_name | string | Primary event name (event category) | Requir ed |
| l2_event_name | String | Secondary event name (specific location of the burying point) | Required |
| error_code | int | Error code, default is 0, 0 for success, other error codes for 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);