How to use the JENTIS DataLayer State
jtspushedcommands
Example
_jts.push({
"track": "pageview",
"pagetitle": "Demo-APP Order Confirmed"
});
_jts.push({
"track": "product",
"type": "order",
"id": "123",
"name": "Testproduct",
"brutto": 199.99
});
_jts.push({
"track": "product",
"type": "order",
"id": "456",
"name": "Testproduct 2",
"brutto": 299.99
});
_jts.push({
"track": "order",
"orderid": "12345666",
"brutto": 499.98,
"paytype": "creditcard"
});Product data
Example
Last updated
Was this helpful?