Okay, I'm trying to link this offer into
So I alter it and add all the tokens: http://adstrx.com/?a=xxxxx&c=xxxxx&s1={clickid}&s2={campaign.id}&s3= {carrier}&s4={brand}&s5={model}&s6={trafficsource. name}&s7={os}&s8={osversion}&s9={device}
Now, in the postback URL from
Also, the postback link from voluum contains 'cid' (see below) which in adsimillis is creativeid. I can't link that to a s1/2/3 value as creativeid isn't a tag in voluum. So would I just get rid of this?
e.g. : htp://ay7id.voluumtrk2.com/postback?cid=REPLACE&payout=OPTIONAL&txid=OPTIONAL
If so, the link I would create would be = htp://ay7id.voluumtrk2.com/postback?clickid=#s1#&campid=#s2#&carrier=#s3#&bra nd=#s4#&model=#s5#&trafficsource.name=#s6#&os=#s7# &osversion=#s8#&device=#s9#
This may not be the easiest thing to read - apologies, but any help would be massively appreciated!
Thanks
Adsimilis are using cake and as such you cannot use non-unique subids in s1, switch {clickid} & {campaign.id} and you're golden.
http://adstrx.com/?a=xxxxx&c=xxxxx&s1={campaign.id}&s2={clickid}&s3= {carrier}&s4={brand}&s5={model}&s6={trafficsource. name}&s7={os}&s8={osversion}&s9={device}
htp://ay7id.voluumtrk2.com/postback?cid=#s2#&payout=#price#
Also, you don't need to pass all those variables to your network, I usually just pass {campaign.id} & {trafficsource.id}
Thank you!