Checkout Tracking
Transfer order data for analytics and performance based pricing
Code
// 8.SDK Web
<script type="text/javascript">
...
</script>
// 8.LYTICS tracking for commission based pricing
<script type="text/javascript">
window.eightlytics(
'purchase',
{
customerid: 'anonymous', // string
orderid: '1234', // string - unique
products: [
{
sku: '12345', // string
amount: 3, // integer
price: 1199 // integer - gross price of 1 item in cent ! attention, this is not the total price
},
{
sku: '456', // string
amount: 1, // integer
price: 19995 // integer
}
]
}
);
</script>How it will look in chrome's network tab

Hints to consider
Last updated
Was this helpful?