Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. 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.
  2. security_token - unique token provided to Advertiser, available on the offer detail page
  3. rate | revenue – commission amount
  4. sale_amount - for the case if the commission amount is not defined
  5. currency - the currency of conversion
  6. cat– the category code and our system applies payout for the category accordingly.
  7. txn_id – unique order/transaction id generated from your platform, any random unique number. This helps to avoid duplicates.
  8. status -  it may be the value of:
    1. pending (by default)
    2. approved
    3. declined
  9. sub1
  10. sub2 
  11. sub3
  12. sub4a parameter that may be used by an Advertiser to set any custom value they want to track in the Indoleads Platform.
  13. sub2 - a parameter that may be used by an Advertiser to set any custom value they want to track in the Indoleads Platform.
  14. sub3 - a parameter that may be used by an Advertiser to set any custom value they want to track in the Indoleads Platform.
  15. sub4 - a parameter that may be used by an Advertiser to set any custom value they want to track in the Indoleads Platform.

Pixel

Add on your “thank you page” tag ing:

...

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.

sub1 - a parameter that may be used by an Advertiser to set any custom value they want to track in the Indoleads Platform.

sub2 - a parameter that may be used by an Advertiser to set any custom value they want to track in the Indoleads Platform.

sub3 - a parameter that may be used by an Advertiser to set any custom value they want to track in the Indoleads Platform.

sub4 - a parameter that may be used by an Advertiser to set any custom value they want to track in the Indoleads Platform.

Click_id will be detected by the cookie.

...

Code Block
languagejs
<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>

* There is no way to use sub1-sub4 parameters with Container integration type.

Click_id will be detected by a cookie.

...

When an advertiser already has an API for fetching conversions via their API. In this case, we should implement integration.

To use sub1-sub4 you should notify us which values from your API should be stored on our side and we will prepare appropriate implementation on our side.


What type should be used?

...