Advertisement
LouisDon

eec.purchaseNatu

Jan 15th, 2020
185
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': '',                // order id. required
  9.                 'affiliation': 'affiliate', // name of the affiliate. or affiliate id
  10.                 'revenue': '',         // order revenue without taxes
  11.                 'tax':'',              // taxes (excluding shipping)
  12.                 'shipping': '',        // shipping cost
  13.                 'coupon': ''        // coupon code used in this transaction
  14.             },
  15.             'products': [{                  // list of products a user has purchased
  16.                 'name': 'Heft 01/2020',      // name of a product that is displayed. Always include it.
  17.                 'id': '',               // id of a product. Always include it. Hier CMMF Nummer.
  18.                 'price': '4.80',              // price of a product
  19.                 'brand': 'Natur und Heilen',             // brand/vendor of a product
  20.                 'category': 'Hefte 2020',          // category of a product
  21.                 'variant': '',            // product variant. If there are no variants, exclude this key from the dataLayer.push
  22.                 'quantity': 1
  23.                 'dimensionN': ''            // A Product-scoped Custom Dimension for index number N
  24.                 'metricN': ''              // A Product-scoped Custom Metric for index number N
  25.              }]
  26.         }  
  27.   }
  28. });
  29. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement