Skip to main content
Commission for Clicks
David Rolenc avatar
Written by David Rolenc
Updated over a week ago

If you would like to pay affiliates for each click, there is a method allowing this behavior for each tracking type.

Before you are able to set this up, you will need an offer with one fixed conversion type created. It is recommended to use the recurrence "Once," so that duplicate commissions for visits are not created.

For direct linking tracking type

Instead of using two scripts as you would use in a normal scenario, you will use one updated script that is able to handle this behavior.

The following script is pasted on the landing page:

<!-- Trackdesk tracker with commission on click begin -->
<script async src="//cdn.trackdesk.com/tracking.js"></script>
<script>
(function(t,d,k){(t[k]=t[k]||[]).push(d);t[d]=t[d]||t[k].f||function(){(t[d].q=t[d].q||[]).push(arguments)}})(window,"trackdesk","TrackdeskObject");

trackdesk("YOUR_TENANT_ID", "click", {}, (data) => {
trackdesk("YOUR_TENANT_ID", "conversion", {
"conversionType": "sale"
});
});
</script>
<!-- Trackdesk tracker with commission on click end -->

Make sure to replace YOUR_TENANT_ID placeholder in the two places above with your Tenant ID. It can be found at the bottom of the Settings page on your affiliate program.

For redirecting tracking type

In order to attribute commission for a click, the following postback will need to be pasted on the landing page:

https://YOUR_TENANT_ID.trackdesk.com/tracking/conversion/v1?conversionTypeCode=sale&cid=OUR_CID

Make sure to replace YOUR_TENANT_ID placeholder with your Tenant ID, it can be found at the bottom of the Settings page on your affiliate program.

Make sure to replace OUR_CID placeholder with the CID that you received on your landing page.

Did this answer your question?