dusanmiha

Uproar - GA - UA - Purchase

Sep 26th, 2023
736
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',                      
  5.   'ecommerce': {                                // The Ecommerce object. This is the essential part of the tracking. New EEC data must always be pushed using this object.
  6.     'currencyCode': 'USD',                      // The currency which is set by the visitor.    
  7.     'purchase': {  
  8.       'actionField': {
  9.         'id': '123456',                         // The unique order ID of the transaction. Should match the actual ID of the order.
  10.         'revenue': '360.00',                  // Total transaction value (incl. tax and shipping)
  11.         'tax':'0.00',
  12.         'shipping': '0.00',
  13.         'coupon': 'coupon name'                 // The coupon code that was used for the entire transaction.
  14.       },
  15.       'products': [{                                            // Should contain all the purchased products.
  16.         'name': 'Sauvage Parfum - Spray 3.4 oz',                       // The name of the product that is purchased. Always include it.
  17.         'id': 'C099600455',                           // The ID (SKU) of the product. Always include it.
  18.         'price': '180.00',                                    // The price of the product.
  19.         'brand': 'DIOR',                                // The brand name of the product.
  20.         'category': 'Men's Fragrance/Sauvage',  // Category of the product.
  21.        'variant': 'Spray 3.4 oz',            // The product variant. If there are no variants, always send Base Product.
  22.        'quantity': 1
  23.       },          
  24.       {
  25.        'name': 'Sauvage Elixir - Spray 2.0 oz',                
  26.        'id': 'C099600755',              
  27.        'price': '180.00',              
  28.        'brand': 'DIOR',            
  29.        'category': 'Engraving Service/Fragrance',          
  30.        'variant': 'Spray 2.0 oz',              
  31.        'quantity': 1
  32.       }]
  33.    }
  34.  }
  35. });
  36. </script>
Advertisement
Add Comment
Please, Sign In to add comment