carlosmdh

purchase

May 25th, 2022
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.dataLayer = window.dataLayer || [];
  2. window.dataLayer.push({
  3.   event: 'purchase',            // name of the event. In this case, it always must be purchase
  4.   ecommerce: {
  5.     currency: 'EUR',
  6.     value: 29.98,                       // order total (price of all products + shipping)
  7.     tax: 3.00,                          // tax
  8.     shipping: 5.00,                 // shipping costs
  9.     affiliation: 'My online shop',      // affiliation (e.g. affiliate id, name of the store, etc.)
  10.     transaction_id: 'abc123',           // transaction id
  11.     coupon: 'ENDOFSUMMER',          // if coupon was applied to the order, include it here         
  12.     items: [{                           // an array with all products
  13.       item_name: 'Product 1',           // insert an actual product name
  14.       item_id: 'product1',              // insert an actual product ID
  15.       price: 11.99,                 // insert an actual product price. Number or a string. Don't include currency code
  16.       item_brand: 'brand A',            // insert an actual product price
  17.       item_category: 'Apparel',         // insert an actual product top-level category
  18.       item_category2: 'T-shirt',        // if it is possible to drill down the categories (e.g. Apparel, then T-shirt, then Men), use item_category2, item_category3, etc. Can use from item_category up to item_category5
  19.       item_variant: 'Blue',             // insert an actual product variant
  20.       quantity: '1',                    // product quantity
  21.       item_coupon: 'SUMMER20'           // if a coupon was applied not to the entire order but to one product, use item_coupon
  22.     },{
  23.       item_name: 'Product 2',
  24.       item_id: 'product2',
  25.       price: 12.99,
  26.       item_brand: 'Brand B',
  27.       item_category: 'Category B',
  28.       item_variant: 'Yellow',
  29.       quantity: '1'
  30.     }]
  31.   }
  32. });
Advertisement
Add Comment
Please, Sign In to add comment