|
| 1 | +<!-- START doctoc generated TOC please keep comment here to allow auto update --> |
| 2 | +<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> |
| 3 | +[Übersicht](https://docs.8select.io/CSE-integration-manual/) |
| 4 | + |
| 5 | +- [CSE Performance-Tracking aka. Eightlytics für KPIs und Abrechnung](#cse-performance-tracking-aka-eightlytics-f%C3%BCr-kpis-und-abrechnung) |
| 6 | + - [Eightlytics einbinden](#eightlytics-einbinden) |
| 7 | + - [Tracking von Transaktionen](#tracking-von-transaktionen) |
| 8 | + - [API](#api) |
| 9 | + - [eightlytics('purchase', order)](#eightlyticspurchase-order) |
| 10 | + |
| 11 | +<!-- END doctoc generated TOC please keep comment here to allow auto update --> |
| 12 | + |
| 13 | +# CSE Performance-Tracking aka. Eightlytics für KPIs und Abrechnung |
| 14 | + |
| 15 | +Eightlytics ist das Web Analytics Tool von 8select, ähnlich wie z.B. Google Analytics oder Webtrekk. |
| 16 | +Mit Hilfe unseres Web Analytics Tools sammeln wir Daten zur Nutzung der Widgets. Im Performance Dashboard können Sie so jederzeit die Performance der CSE einsehen. |
| 17 | + |
| 18 | +## Eightlytics einbinden |
| 19 | + |
| 20 | +Eightlytics wird automatisch durch das einbinden des 8select-CSE JavaScript SDKs geladen, sofern es benötigt wird. |
| 21 | + |
| 22 | +Siehe dazu [Setup](../setup.md) |
| 23 | + |
| 24 | +## Tracking von Transaktionen |
| 25 | + |
| 26 | +Für die Auswertung der Umsätze die über die 8select-CSE kommen, müssen Sie einen zweiten JavaScript Codeausschnitt einbinden. Dies muss auf der Seite die nach einem erfolgreichen Checkout angezeigt wird erfolgen. |
| 27 | + |
| 28 | +Der Codeausschnitt muss im HTML an beliebiger Stelle nach dem Codeausschnitt für das Laden des 8select-CSE JavaScript-SDKs eingefügt werden. |
| 29 | + |
| 30 | +**ACHTUNG** - Preise müssen in Cent übertragen werden - also aus `199,95 €` wird `19995`. |
| 31 | + |
| 32 | +```javascript |
| 33 | +<script type="text/javascript"> |
| 34 | + window.eightlytics( |
| 35 | + 'purchase', |
| 36 | + { |
| 37 | + customerid: '1234', |
| 38 | + orderid: '1234', |
| 39 | + products: [ |
| 40 | + { |
| 41 | + sku: '12345', |
| 42 | + amount: 3, |
| 43 | + price: 1199 |
| 44 | + }, |
| 45 | + { |
| 46 | + sku: '456', |
| 47 | + amount: 1, |
| 48 | + price: 19995 |
| 49 | + } |
| 50 | + ] |
| 51 | + } |
| 52 | + ); |
| 53 | +</script> |
| 54 | +``` |
| 55 | + |
| 56 | +## API |
| 57 | + |
| 58 | +### eightlytics('purchase', order) |
| 59 | + |
| 60 | +**order** |
| 61 | + |
| 62 | +| field | type | required | description | |
| 63 | +| ---------- | ---------------- | -------- | ------------------------------------- | |
| 64 | +| customerid | string | required | unique customer identifier | |
| 65 | +| orderid | string | required | unique transaction identifier | |
| 66 | +| products | array of product | required | which products does the order contain | |
| 67 | + |
| 68 | +**product** |
| 69 | + |
| 70 | +| field | type | required | description | |
| 71 | +| ------ | ------- | -------- | ------------------------------------------ | |
| 72 | +| sku | string | required | product identifier | |
| 73 | +| amount | integer | required | how many units are added to the cart | |
| 74 | +| price | integer | required | what does one unit cost in **_euro cent_** | |
| 75 | + |
| 76 | +```javascript |
| 77 | +{ |
| 78 | + customerid: '1234', |
| 79 | + orderid: '1234', |
| 80 | + products: [ |
| 81 | + { |
| 82 | + sku: '12345', |
| 83 | + amount: 3, |
| 84 | + price: 1199 |
| 85 | + }, |
| 86 | + { |
| 87 | + sku: '456', |
| 88 | + amount: 1, |
| 89 | + price: 19995 |
| 90 | + } |
| 91 | + ] |
| 92 | +} |
| 93 | +``` |
0 commit comments