Report Custom Event Step (deprecated, not recommended)
Report the data of custom events to calculate the conversion rate for funnel analysis.
Function Definition
public static void ReportCustomEventStep(string eventName, uint step, string stepName, bool result, int errorCode = 0, string extraJson = "{}");
Parameter Instructions
| Parameters | Type | Explanation |
|---|---|---|
| eventName | String | Event Name |
| step | uint | Step ID Counting starts from 0 |
| stepName | String | Step Name |
| result | bool | Step Result true: success false: failure |
| errorCode | int | Error Code When result=true, errorCode=0 When result=false, errorCode is a custom error code |
| extraJson | string | Additional Parameters JSON format |
Code Sample
string eventName = "eventName";
uint step = 0;
string stepName = "stepName";
bool result = true;
int errorCode = 0;
string extraJson = "{}";
INTLAPI.ReportCustomEventStep(eventName, step, stepName, result, errorCode, extraJson);