Event Tracking
TRACKING EVENTS
InviteReferrals track at each and every step of the referral campaign from shares to clicks to conversions such as registrations, sales, mobile application installs. You can set up a webhook if you have your own API and you want data for different events to be sent on your server. You will receive the tracking callback responses to either success or failure. Read this informative guide to know the formats to track events.
Tracking Events
Implement the below method to track event(s) :
Invitereferrals.shared.tracking((String)trackingName,
(String)email-id/order-id,
(int)purchase-value,
(String) referCode,
(String) uniqueCode,
(String) customValue,
(JSONObject) userData)
.then((value) {
// success callback
});
Parameters :
Parameter | Description | Value |
---|---|---|
Event name (string) | InviteReferrals provide events which you can pass in the code to track conversions and accordingly reward the customers. | sale, register, install, whatsapp, share |
Order Id (integer) | order id of the customer | ABXHXXXXX |
Purchase value (string) | Total purchased amount of the event | 10000 |
Refer code (string) | referral code given by the referrer to his friend to make sale so that he gets the incentive. | MARCXX |
Below are the examples for install/register/sale events. You can also implement custom events using these formats according to your requirements.
A. INSTALL
Invitereferrals.shared.tracking(install,
null,
null,
null,
null,
null,
null)
.then((value) {
// do your task
});
B. REGISTER
Invitereferrals.shared.tracking(register,
"[email protected]",
null,
null,
null,
null,
null).
then((value) {
// do your task
});
C.SALE
Invitereferrals.shared.tracking(sale,
"abc123",
9800,
null,
null,
null,
null)
.then((value) {
// do your task
});
Tracking Callback will provide responses to either failure or success.
In case of failure, you will get :
{
"eventName":"register",
"response":{
"Authentication":"fail",
"conversion_details":{
"conversion":"fail",
"Error":"Data not found",
"ErrorType":"2"
}
}
}
In case of SUCCESS, you will get :
{
"eventName":"register",
"response":{
"bid":"46287",
"bid_e":"EF2B93611671E38CB40FCB460A07C46D",
"Authentication":"success",
"conversion_details":{
"campaignID":"27894",
"event":"register",
"conversion":"success",
"referrer_name":"Jack",
"referrer_email":"[email protected]",
"referrer_mobile":"0000000000",
"referrer_email_org":"[email protected]",
"referee_name":"Jack90",
"referee_email":"[email protected]",
"referee_mobile":"0000000099",
"referee_android_id":"2cce7afd59743d9b",
"referee_ios_ifa":"",
"referee_email_org":"[email protected]",
"orderID":"[email protected]",
"purchaseValue":10,
"order_custom_val":"",
"ir_referrer_code":"MGB9Q7HR",
"unique_code":""
}
}
}
In case of failure response, following are the error-type along with error-messages that are used in the callback.
Error Message | Error Type | Scenario | Note |
---|---|---|---|
Data not found | 2 | In case when data not found | |
Invalid Authentication | 4 | if something went wrong and the API authentication failed or network error | |
Invalid Account | 5 | In case of wrong account credential passed in AndroidManifest file (ie. BrandID and EncryptionKey) | |
Conversion not eligible | 6 | In case a referrer is not found, that means the referral link was not clicked if the referrer shared the referral link. OR In case of referrerCode /uniqueCode the value for referrerCode / unique code is either nil or invalid | |
Parameter missing | 7 | Parameter missing, orderID or eventName cannot be empty or null | |
install already tracked or not eligible | 9 | In case of Event name is null or empty, in callback response "eventName" key will not appear. Example : {"response":{"Authentication":"fail","conversion_details":{"conversion":"fail","Error":"Parameter missing, orderID or eventName cannot be empty or null","ErrorType":"7"}}} |
In case of Event name is null or empty, in callback response "eventName" key will not appear.
Example
{"response":{"Authentication":"fail","conversion_details":{"conversion":"fail","Error":"Parameter missing, orderID or eventName cannot be empty or null","ErrorType":"7"}}}
Updated about 1 year ago