Conversion information can be transmitted by:
Postback
Better to use, since in this case there is only one redirect when following a tracking link.
https://app.indoleads.com/acquisition?click_id=CLICK_ID&security_token=SECURITY_TOKEN&rate=AMOUNT¤cy=USD&txn_id=UNIQUE_TRANSACION_ID
click_id – is a unique and dynamic set of characters, generated by Indoleads Network. It is sent through an offer URL and returned through POSTBACK URL after the conversion is complete.
security_token -
rate – commission amount
txn_id – unique order/transaction id generated from your platform, any random unique number. This helps to avoid duplicates.
Pixel
Add on your “thank you page” tag ing:
<img style="visibility:hidden;" src="https://app.indoleads.com/pixel?adid=3&rate=AMOUNT¤cy=USD&txn_id=UNIQUE_TRANSACION_ID&cat=CATEGORY_CODE">
If you separate payout for publishers by categories you should send us a specific marker where we can detect which category of payout it applies.
<img src=”https://app.indoleads.com/api/pixel?adid=206&sale_amount=AMOUNT¤cy=MYR&cat=fashion”>
adid – your unique offer in indoleads.com platform
rate – commission amount
txn_id – unique order/transaction id generated from your platform, any random unique number. This helps to avoid duplicates.
sale_amount – the amount of purchase made from our traffic
currency – the currency of amount in 3 symbol currency code (for e.g. MYR Malaysian Ringgit)
cat– here we understand that is the specific payout for the “fashion” category and our system applies payout for the category accordingly.
In the sale amount, you need to put the exact amount of the purchase made.
As long as it’s pixel no need to add anything specific into tracking link (except your personal marks for e.g. UTM for Google analytics). Each user that comes with our traffic from our tracking links all the information will be stored in browser cookies which ones we can read in the pixel if conversion from the user occurs.
Click_id will be detected by the cookie.
Container
Add on your “thank you page” tag script:
<script> //unique transaction id var TXN_ID = {YOUR_TXN_ID}; // publisher commission var RATE = {AMOUNT}; // order currency var CURRENCY = "USD"; // indoleads offer id var OFFER_ID = 3; // network domain var NETWORK = "https://app.indoleads.com"; </script> <script src="https://app.indoleads.com/js/platform/pixel.js"></script>
Click_id will be detected by a cookie.