Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window.dataLayer = window.dataLayer || [];
- window.dataLayer.push({
- event: 'purchase', // name of the event. In this case, it always must be purchase
- userId: '123abc' // this should be replaced by actual user ID and cannot be PII e.g. email address or IP address
- ecommerce: {
- currency: 'PKR',
- value: 29.98, // order total (price of all products + shipping)
- tax: 3.00, // tax
- shipping: 5.00, // shipping costs
- transaction_id: 'abc123', // transaction id
- coupon: 'ENDOFSUMMER', // if coupon was applied to the order, include it here
- items: [{ // an array with all products
- item_name: 'Product 1', // insert an actual product name
- item_id: 'product1', // insert an actual product ID
- price: 11.99, // insert an actual product price. Number or a string. Don't include currency code
- item_brand: 'brand A', // insert an actual product price
- item_category: 'Apparel', // insert an actual product top-level category
- quantity: '1', // product quantity
- item_coupon: 'SUMMER20' // if a coupon was applied not to the entire order but to one product, use item_coupon
- },{
- item_name: 'Product 2',
- item_id: 'product2',
- price: 12.99,
- item_brand: 'Brand B',
- item_category: 'Category B',
- item_variant: 'Yellow',
- quantity: '1'
- }]
- }
- });
- }]
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement