How to add a Mixmarket tag?

Bronze Contributor
Bronze Contributor
Hello, I am trying to add the following tag from Mixmarket via Tealium Generic Tag. <script> var univar1='ID'; var univar2='summ'; document.write('');</script>
5 REPLIES 5

How to add a Mixmarket tag?

Employee Emeritus

Have you reviewed this post: https://community.tealiumiq.com/t5/Developers/Tealium-s-Generic-Tag/m-p/760 on how to implement the Generic tag?

How to add a Mixmarket tag?

Employee Emeritus
Here is a quick version that can go with the post Clint suggests. Add three data sources: timestamp, univar1, univar2 Add a Set Data Values Extension and set it up like: Set: timestamp To: JS Code -> (new Date()).getTime(); Set: univar1 To: Text -> "ID" (do not use quotes) Set: univar2 To: Text -> "summ" (do not use quotes) In the Generic Tag select image in the drop-down. Then paste this into both HTTP and HTTPS lines: //mixmarket.biz/uni/tev.php In the static parameters paste this: id=1294929990 Then in the mappings section map: timestamp -> t referrer -> r univar1 -> a1 univar2 -> a2 This should get you there. Cheers!

How to add a Mixmarket tag?

Bronze Contributor
Bronze Contributor
Thank you Jared! One more question: I want to set a1 and a2 to use dynamic values from js. In this case can I mapp bookingID(js) -> a1 (where bookingID is already defined) totalPrice(js) -> a2 (where totalPrice is already defined) Or I need to still use the Set Data Value Extension? Thank you,

How to add a Mixmarket tag?

Employee Emeritus
Marius, You can map anything you need to those values. It sounds like the variables you outline above are the correct variables to map. Cheers!

How to add a Mixmarket tag?

Bronze Contributor
Bronze Contributor
Thank you Jared!
Public