Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. dataLayer.push({
  2.   "ecommerce": {
  3.     "purchase": {
  4.       "actionField": {
  5.         "currencyCode": "NOK",
  6.         "id": "order id",  //coming for your backend system
  7.         "affiliation": "Online Store",
  8.         "revenue": "250.00",
  9.         "shipping": "20.00",
  10.         "coupon": "activity code",  //order specific
  11.       },
  12.       "products": [{
  13.                "id":"12345”,
  14.               "name": "Bok: Viktingtidens utbrudd",  //name or id is required
  15.               "price": "250.00",
  16.               "category": "Hardcover",
  17.               "quantity": 1
  18.      }, {
  19.               Product 2 //optional
  20.      }]
  21.    }
  22.  },
  23.  "event": "purchase"
  24. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement