Home > Tracking Campaigns > Tracking Guides for Traffic Sources

Setting up Jumptap Conversion Tracking (5)


12-19-2011 05:30 PM #1 leber026 (Member)
Setting up Jumptap Conversion Tracking

There have been a few questions about tracking conversions on Jumptap. This write up will hopefully help answer these questions. This can be used with any network/tracking platform that supports postback urls. You just have to make a few minor adjustments. The info below is written for use with hasOffers.

Setup a Jumptap Conversion
First thing we need to do is setup a conversion event on Jumptap. Below is a screen shot of what I do. You might have to turn on conversion reporting before you do this, I can't remember. If you do, just click on the Conversions link and you should be able to enable it. I don't have the exact steps but it was pretty easy, like click a link easy.

To create a Conversion Event click on the conversions link across the top, then click the "Add a new Conversion Event" link. It should take like the one below.



Select the Following

Type: Web
Purpose: I use other, but I think you can select anything you want.
Name: Some name you will recognize this is important if you setup a number of different conversions. Not sure that you will though. I like to use something simple with out any spaces because it will be used in the URL.
Landing Page Security: HTTP Use HTTPS if you need a secure pixel. Ask your AM if you don't know.

Now to the Bottom section. Customize your Event. Pick the one that makes sense for you. I'm going to use the actual value, because its probably the most difficult way to setup. It's still very easy though. Select your currency and click the next button.

I'm not sure why Jumptap doesn't give you the code here but enter your email address and send the code to yourself.

Creating the Postback URL

When you get the code from Jumptap open the php sample in your text editor. Search through the code and find the conversionEventId It should be near the bottom mixed into a bunch of code looking like


Code:
include './jttracking.php';
$conversionEvent="Other";
$conversionEventId="1111";
$conversionValueAverage="${conversion.valueAverage}";
$conversionValueCurrency="USD";
$conversionNumberOfUnits="1";

Write down theconversionEventId in this cases it's 1111. Now we need the actual url. It should be

Code:
http://a.jumptap.com/a/conversion?event=$event&eventid=$eventid&jt-reqid=$jtreqid&currency=$currency&amount=$amount&units=$units

But you can search for jumptap.com to double check it looks the same. NOTE: it might look different if you selected different options in the last step.

Now we need to edit this url. We need to replace $event,$eventid,$jtreqid,$currency,$amount, and units. First replace the simple ones

$event = lead or the name you called the event when creating it.
$eventid = 1111 this is the conversion event we found earlier.
$currency = USD
$units = 1

Our URL should now look like this

Code:
http://a.jumptap.com/a/conversion?event=lead&eventid=1111&jt-reqid=$jtreqid&currency=USD&amount=$amount&units=1
Remember we want to replace the tokens with the $ and not the ones with the &

Now onto the dynampic tokens.

$jtreqid= {aff_sub5}
$ammount = {payout} the payout you receive for the offer
These two values WILL CHANGE depending on your setup. You need to find the tokens your tracking system or network is using.


VERY IMPORTANT - > In this example I'm using {aff_sub5} because thats what I'm sending the JT_REQID to when I setup my inbound links. For this to work you must send JT_REQID to a unique subid into your system and use that token for the $jtreqid. In prosper you may use [[c1]] through [[c4]] and has Offers you may use {aff_sub} or {aff_sub2} through {aff_sub5}


Your final postback url will look like

Code:
http://a.jumptap.com/a/conversion?event=lead&eventid=1111&jt-reqid={aff_sub5}&currency=USD&amount={payout}&units=1

Placing the Postback URL
Now place the above url to the offer of your choice, or use it as a global pixel. If you setup hasOffers like I described in the hasOffers guide go to your Affiliate Management page. Click on affiliates and then click on Jumptap. On the right side you should see a "Conversion Pixels/URLS" section. Click on the "add" link ad you should see



This is pretty straight forward, select "All Offers" and make sure it says "jumptap" as your affiliate then select "Postback URL" as your type. Now paste the postback URL you created into the box and click save.


You should now be all set, so start running some traffic and test it out!


12-19-2011 09:20 PM #2 nick (Member)

Thanks so much for this mate. Really appreciate the time and effort you've gone to for this.


12-20-2011 10:23 AM #3 nick (Member)

Damn! For some reason, HasOffers is not saving my postback URL. It's weird because it tells me that the conversion pixel has been saved, but when I go back to check it, there's nothing there!

I've also noticed that sometimes when I click on my affiliate 'jumptap', it's telling me that "affiliate does not exist".


12-20-2011 02:34 PM #4 emonetized (Member)

Thanks for this. Any tips on how to properly setup the token within CPV lab?

For example, I'm passing tokens such as Operator using:

Name: Operator
URL Append: &op=JT_OPERATOR
Parameter: op

Could I use this for REQID:

Name: Reqid
URL Append: &jtreqid=mystaticoffersubid
Parameter: reqid

Does the REQID have to be unique to the campaign/offer or must it be unique per click? Reason I'm asking is because at the moment I'm just passing one subid through the affiliate link and not generating separate subids for every click.


12-20-2011 06:52 PM #5 leber026 (Member)

JT_REQID has to be the value Jumptap provides, it is unique per click. If it was't it would know where to apply the conversion.

I haven't used CPVLab in a little while,but if I remember correctly they have a place for 3rd party pixels/ urls. Try placing your postback url there.


Home > Tracking Campaigns > Tracking Guides for Traffic Sources