Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Push trialToPaid event to dataLayer when user upgrade their trial account to paid plan.
- <script>
- window.dataLayer = window.dataLayer || [];
- dataLayer.push({
- 'event': 'trialToPaid',
- 'transactionId': '1234', // (Required) Unique transaction identifier string
- 'transactionTotal': 38.26, // (Required) Total value of the transaction numeric
- 'transactionProducts': [{
- 'sku': 'plan1', // (Required) Product SKU string
- 'name': 'Humango Fitness', // (Required) Purchased plan Name string (Social, FItenss, Endurance, All-Star)
- 'category': 'Category 1', // (Optional) Product category string
- 'price': 11.99, // (Required) Unit price numeric
- 'quantity': 1 // (Required) Number of items numeric
- }]
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment