Advertisement
JITreviso

Limonada | eec.purchase

Mar 20th, 2022
1,117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. window.dataLayer  = window.dataLayer || [];
  3. window.dataLayer.push({
  4.     'event': 'eec.purchase',                // name of an event. In this case, always stays as eec.purchase
  5.     'ecommerce': {                          // ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
  6.         'purchase': {                       // name of an action. In this case, always stays as purchase
  7.             'actionField': {
  8.                 'id': 'LIM30283',                // order id. required
  9.                 'affiliation': 'affiliate', // name of the affiliate. or affiliate id
  10.                 'revenue': '280.00',         // order revenue without taxes
  11.                 'tax':'50.00',              // taxes (excluding shipping)
  12.                 'shipping': '12.00',        // shipping cost
  13.                 'coupon': 'FALL20'        // coupon code used in this transaction
  14.             },
  15.             'products': [{                  // list of products a user has purchased
  16.                 'name': 'Chaqueta Bear Queen Niña Crudo Limonada',      // name of a product that is currently viewed
  17.                 'id': 'LIM30283',           // id of a product
  18.                 'price': '330.00',          // price of a product
  19.                 'brand': 'Limonada Chile/USA',         // brand/vendor of a product
  20.                 'category': 'Niña Ropa',      // category of a product
  21.                 'variant': 'Bear Queen',        // product variant. If there are no variants, exclude this key from the dataLayer.push
  22.                 'quantity' : 1              // product quantity
  23.              }]
  24.         }  
  25.   }
  26. });
  27. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement