Advertisement
Guest User

linza purchase

a guest
Jun 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <script>
  2.  
  3. dataLayer.push({
  4. 'event' : 'autoEvent',
  5. 'eventCategory' : 'eec',
  6. 'eventAction' : 'purchase',
  7. 'ecommerce': {
  8. 'purchase': {
  9. 'actionField': {
  10. 'id': 'T12345', // Transaction ID. Required for purchases and refunds.
  11. 'affiliation': 'Online Store',
  12. 'revenue': '35.43', // Total transaction value (incl. tax and shipping)
  13. 'tax':'4.90',
  14. 'shipping': '5.99',
  15. 'coupon': 'SUMMER_SALE'
  16. },
  17. 'products': [{ // List of productFieldObjects.
  18. 'name': 'Triblend Android T-Shirt', // Name or ID is required.
  19. 'id': '12345',
  20. 'price': '15.25',
  21. 'brand': 'Google',
  22. 'category': 'Apparel',
  23. 'variant': 'Gray',
  24. 'quantity': 1,
  25. 'coupon': '' // Optional fields may be omitted or set to empty string.
  26. },
  27. {
  28. 'name': 'Donut Friday Scented T-Shirt',
  29. 'id': '67890',
  30. 'price': '33.75',
  31. 'brand': 'Google',
  32. 'category': 'Apparel',
  33. 'variant': 'Black',
  34. 'quantity': 1
  35. }]
  36. }
  37. }
  38. });
  39. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement