Advertisement
GiacomoGalanti

TRANSACTION

Nov 29th, 2020
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <script>
  2. var dataLayer = window.dataLayer || [];
  3. dataLayer.push({
  4. 'event': 'transaction',
  5. 'ecommerce': {
  6. 'purchase': {
  7. 'actionField': {
  8. 'id': '2873',
  9. 'revenue': '122.97',
  10. 'tax':'12',
  11. 'shipping': '',
  12. 'coupon': 'BACKTOSCHOOL' //needs to be filled if coupon is used on the entire order
  13. },
  14. 'products': [{
  15. 'name': 'Happy Ninja',
  16. 'id': '8773',
  17. 'price': 11.99,
  18. 'brand': 'Demobrand',
  19. 'category': 'T-Shirt',
  20. 'quantity': 2,
  21. 'coupon': 'HappyT2122' //needs to be filled if coupon is used on a single product
  22.  
  23. },
  24. {
  25. 'name': 'Grumpy Ninja',
  26. 'id': '2873',
  27. 'price': 11.99,
  28. 'brand': 'Demobrand',
  29. 'category': 'T-Shirt',
  30. 'quantity': 2,
  31. 'coupon': ''
  32. }]
  33. }
  34. }
  35. });
  36. </script>
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement