in your sale tracking code you can use various parameters that wil pass additional data about the transaction. Back to Samples & tests home
All possible tracking parameters
<script id="pap_x2s6df8d" src="https://www.afilead.com/afiliacion/scripts/trackjs.js" type="text/javascript">
</script>
<script type="text/javascript">
PostAffTracker.setAccountId('default1'); //use this line for PAN account, set here your account Id instead of default1
var sale = PostAffTracker.createSale();
sale.setTotalCost('120.50');
sale.setFixedCost('20.50');
sale.setOrderID('ORD_12345XYZ');
sale.setProductID('test product');
sale.setAffiliateID('testaff');
sale.setBannerID('11110001');
sale.setCampaignID('11111111');
sale.setChannelID('chan');
sale.setCoupon('CouponCode');
sale.setCustomCommission('10.23');
sale.setCustomCommissionNextTiersFromCampaign('Y');
sale.setCurrency('EUR');
sale.setStatus('A');
sale.setData1('something');
sale.setData2('something');
sale.setData3('something');
sale.setData4('something');
sale.setData5('something');
PostAffTracker.setVisitorId('ae5f51c3145771c87a0fe467000FvW6e');
PostAffTracker.writeCookieToCustomField('id_field');
PostAffTracker.writeAffiliateToCustomField('id_field');
PostAffTracker.writeCookieToLink('id_field', 'papCookie');
PostAffTracker.writeAffiliateToLink('id_field', 'a_aid');
PostAffTracker.register();
</script>
Sale / lead / action parameters
setTotalCost()
total cost of the order. It is required for percentage commissions campaigns, otherwise optional
setFixedCost()
fixed cost of the order. Fixed cost is substracted from totalcost before commission is computed. If you put % in front of the number, the fixed cost will be computed as percentage
setOrderID()
ID of the order. Can be used for recognizing duplicate transactions
setProductID()
ID of the product
setAffiliateID()
ID or referral ID of the affiliate. With this parameter you can force to register commission to this affiliate
setBannerID()
ID of the banner. With this parameter you can force to register commission using this banner, also is applied campaign to which banner belongs.
setCampaignID()
ID of the campaign. With this parameter you can force to register commission using this campaign
setChannelID()
ID of the channel. With this parameter you can force to register commission for this channel
setCoupon()
Coupon code. If set, affiliate is recognized from coupon code
setCustomCommission()
value of custom commissions. You can force to use this commissions value instead of commissions set in campaign. If you put % with number, the commission will be computed as percentage, for tiers separator use ';' e.g.: 10;5;3;1 or 10%;5% (Notice if you set only one number as custom commission and don't use "setCustomCommissionNextTiersFromCampaign('Y')", will be created commission only for first tier affiliate, although if you have set multitier commissions in campaign)
setCustomCommissionNextTiersFromCampaign('Y')
use this with setCustomCommission() if you want to generate other default tiers by campaign settings, without this are generated only custom commission tiers
setCurrency()
currency code. You can force to use this currency instead of default currency. (you need to have Multiple currencies feature enabled)
setStatus()
force to set this status for this commission. You can use these states:
'A' - approved
'P' - pending
'D' - declined
setData1()
set custom data for this transaction. You have up to five fields.
setData2()
set additional custom data for this transaction
setData3()
set additional custom data for this transaction
setData4()
set additional custom data for this transaction
setData5()
set additional custom data for this transaction
doNotDeleteCookies()
do not delete cookies after sale although 'Delete cookie after lead / sale' is enabled, this is useful for separate tracking per product
Global tracker parameters
PostAffTracker.setAccountId('account_id')
use this line for Post Affiliate Network, set here your account Id instead of 'account_id'. Network owner can find it in Accounts > Account manager
PostAffTracker.setVisitorId()
custom cookie value. With this parameter you can force to register commission with this cookie value.
The cookie value stands for visitor ID which is stored in PAP4 database representing the relation between visitor and the referring affiliate.
Helper tracker functions
PostAffTracker.writeCookieToCustomField()
this function writes the value of the cookie into input field with the specified ID
PostAffTracker.writeAffiliateToCustomField()
this function writes the affiliate ID value from the cookie into input field with the specified ID
PostAffTracker.writeCookieToLink()
this function appends the value of the cookie into the specified link
PostAffTracker.writeAffiliateToLink()
this function appends the affiliate ID value into the specified link
PostAffTracker.register()
this function will call the affiliate system and saves the commission. This function MUST BE CALLED if you want to save the commissions.