Advertisement
martech-george

Untitled

Sep 3rd, 2021
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <script>
  2. gtag('event', 'begin_checkout', {
  3. "currency": "EUR",
  4. "value": 2, // Sum of prices for the products in the checkout cart
  5. "items": [ // Array with the products in the checkout cart
  6. {
  7. "id": "P12345",
  8. "name": "Android Warhol T-Shirt",
  9. "brand": "Google",
  10. "category": "Apparel/T-Shirts",
  11. "variant": "Black",
  12. "quantity": 1,
  13. "price": 2,
  14. "google_business_vertical": "retail"
  15. },
  16. {
  17. "id": "P67890",
  18. "name": "Flame challenge TShirt",
  19. "brand": "MyBrand",
  20. "category": "Apparel/T-Shirts",
  21. "variant": "Red",
  22. "quantity": 1,
  23. "price": 3,
  24. "google_business_vertical": "retail"
  25. }
  26. ]
  27. });
  28. </script>
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement