Ad Revenue Forwarding to MMP/BI
Appodeal SDK allows you to get ad revenue data using Ad Revenue Attribution API and Ad Revenue Callbacks.
This data includes information about network name, revenue, ad type, etc.
It is possible to send ad revenue data to Adjust, AppsFlyer, and also to your own MMP/BI.
To send ad revenue data to MMP/BI, please follow the steps below:
Adjust
- Appodeal Adjust account
- Own Adjust account
No additional steps are required if you have integrated Adjust using this guide.
Ad revenue data will be sent automatically after the ad impression.
If you want to send ad revenue data to Adjust you need to use the code below :
AdjustAdRevenue adRevenue = new AdjustAdRevenue(AdjustConfig.AdjustAdRevenueSourcePublisher);
adRevenue.setRevenue(ad.Revenue, ad.Currency);
adRevenue.setAdRevenueNetwork(ad.NetworkName);
adRevenue.setAdRevenueUnit(ad.AdUnitName);
Adjust.trackAdRevenue(adRevenue);
AppsFlyer
Ad Revenue Attribution API:
- If you want to send ad revenue to AppsFlyer, please follow step 6 from the AppsFlyer guide.
Ad Revenue Callbacks:
- Please refer to the guide in this case.
Own MMP/BI
Ad Revenue Attribution API:
- Contact us via email at support@appodeal.com or the live chat, and we will enable ad revenue sending
- Send your attribution ID to Appodeal using
Appodeal.SetExtraData()
method from this guide - To get ad revenue data, you need to follow this guide
- Then you can send received ad revenue data to your MMP/BI
Ad Revenue Callbacks:
- Please refer to the guide in this case.