Home >
Technical & Creative Skills >
Tracking Campaigns
Voluum Direct Tracking Pixel (4)
08-28-2018 02:17 PM
#1
do_what_matters (Member)
Voluum Direct Tracking Pixel
Hi,
Anyone know if there is a way to get the current offer id being rotated into a Voluum direct tracking lander?
Normally you would get it from the URL parameters but in this case I think it's all done behind the scenes since there is no redirect, I'm guessing there's gotta be some kind of JS variable?
Thanks
08-29-2018 03:08 AM
#2
vortex (Senior Moderator)
If you don't end up getting an answer here, perhaps try contacting Voluum support?
Amy
08-29-2018 12:59 PM
#3
do_what_matters (Member)
Nothing from Voluum yet, they are still trying to figure out what I mean by my question. I'm surprised nobody here has an answer.
08-29-2018 03:09 PM
#4
voluum (Veteran Member)
There's an easy solution to get an offer ID to your lander. First, edit a lander entity in Voluum and append a parameter with offer ID token, e.g.
Code:
https://samplelander.com/?offerid={offer.id}
Then, use the following JS code to extract the parameter value from URL:
Code:
dtpCallback(function callback(params) {
console.log(params.offerid);
});
Home >
Technical & Creative Skills >
Tracking Campaigns