Skip to content
Leo Cavalcante edited this page Feb 19, 2015 · 2 revisions

Leadsolution

Tracking conversion pixels

Linking

Links to campaigns must pass to a gateway interface, so in the user is set a cookie with the source to be tracked. In the track URL you must pass the endpoint URL, the address where the user will be redirect after the track, usually the offer URL.

http://<country>.leadsolution.com.br/tracker/track/<source>?redirect=http://example.com

Converting

The conversion pixel can be a <img> an <iframe> and even a <script>. The return type is handled by the output param on the pixel URL. The track can receive lead's name and email.

http://<country>.leadsolution.com.br/tracker/convert/<identifier>?output=<output>&name=<name>&email=<email>

The default output is HTML, the value for <img> should be img and for <script> should be js.

Examples

Link to:

http://espanha.leadsolution.com.br/tracker/track/AABBCCC?redirect=http://google.com

And in the conversion page of the campaign:

<img src="http://espanha.leadsolution.com.br/tracker/convert/123?output=img&name=Joe&email=joe@example.com" width="1" height="1" />

Clone this wiki locally