Advertisement
jaspacio

GA4 Purchase

Jun 20th, 2022 (edited)
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. dataLayer.push({ ecommerce: null });  // Clear the previous ecommerce object.
  3. dataLayer.push({
  4.   event: "purchase",
  5.   ecommerce: {
  6.       transaction_id: "T_12345",                // This is the order ID that's shown on the TY page to the user upon successful purchase
  7.       affiliation: "Google Merchandise Store",
  8.       value: 25.42,
  9.       tax: 4.90,
  10.       shipping: 5.99,
  11.       currency: "USD",
  12.       coupon: "SUMMER_SALE",
  13.       items: [
  14.        {
  15.         item_id: "SKU_12345",
  16.         item_name: "Stan and Friends Tee",
  17.         affiliation: "Google Merchandise Store",
  18.         coupon: "SUMMER_FUN",
  19.         currency: "USD",
  20.         discount: 2.22,
  21.         index: 0,
  22.         item_brand: "Google",
  23.         item_category: "Apparel",
  24.         item_category2: "Adult",
  25.         item_category3: "Shirts",
  26.         item_category4: "Crew",
  27.         item_category5: "Short sleeve",
  28.         item_list_id: "related_products",
  29.         item_list_name: "Related Products",
  30.         item_variant: "green",
  31.         location_id: "L_12345",
  32.         price: 9.99,
  33.         quantity: 1
  34.       },
  35.       {
  36.         item_id: "SKU_12346",
  37.         item_name: "Google Grey Women's Tee",
  38.         affiliation: "Google Merchandise Store",
  39.         coupon: "SUMMER_FUN",
  40.         currency: "USD",
  41.         discount: 3.33,
  42.         index: 1,
  43.         item_brand: "Google",
  44.         item_category: "Apparel",
  45.         item_category2: "Adult",
  46.         item_category3: "Shirts",
  47.         item_category4: "Crew",
  48.         item_category5: "Short sleeve",
  49.         item_list_id: "related_products",
  50.         item_list_name: "Related Products",
  51.         item_variant: "gray",
  52.         location_id: "L_12345",
  53.         price: 20.99,
  54.         promotion_id: "P_12345",
  55.         promotion_name: "Summer Sale",
  56.         quantity: 1
  57.       }]
  58.   }
  59. });
  60. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement