Checkout Tracking
Transfer order data for analytics and performance based pricing
The commission is based on performance, i.e. only products purchased via our widgets are eligible for commission. To determine these products, the purchases in the shop are compared with the interactions in our widgets. For this purpose, all shop transactions must be transmitted. The transmission takes place without personal data and only contains the individual order items.
To simplify the commission process it is based on gross prices, i.e. you have to transfer the gross price of a product.
Code
How it will look in chrome's network tab
There should be a POST request going out to https://eltx.8select.io/events
Hints to consider
For price
, the price in cents per item must be transferred as an integer
.
For an item that costs 199.95 β¬, the value 19995
must be transferred.
For sku, the same value as in the product export must be used. The value must be transmitted as a string.
The customerid will be used to optimize content in the future. For the sake of simplicity and GDPR concerns we are removing it for now as a requirement. In the meantime just transfer anonymous
as value.
The orderid has to be unique because we use it to deduplicate orders.
The orderid is used to compare our analytics data with the shop's analytics data on request. For example, for spot checks. If this is desired, the orderid must not be transmitted anonymously.
Last updated