admin:online-platform-cms:google-events

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
admin:online-platform-cms:google-events [2023/12/11 14:10] evaldas-luksysadmin:online-platform-cms:google-events [2024/01/22 08:55] evaldas-luksys
Line 128: Line 128:
 ====== Events and their data (GTM): ====== ====== Events and their data (GTM): ======
  
-**registrationInit**+**gtm-registrationInit**
 <code> <code>
 { {
-  event: 'registrationInit',+  event: 'gtm-registrationInit',
   action: 'registration_init',   action: 'registration_init',
   category: 'registration',   category: 'registration',
Line 137: Line 137:
 </code> </code>
  
-**registrationConfirmationKey**+**gtm-registrationConfirmationKey**
 <code> <code>
 { {
-  event: 'registrationConfirmationKey',+  event: 'gtm-registrationConfirmationKey',
   action: 'confirmation_key',   action: 'confirmation_key',
   category: 'registration',   category: 'registration',
Line 146: Line 146:
 </code> </code>
  
-**registrationFinished**+**gtm-registrationFinished**
 <code> <code>
 { {
-  event: 'registrationFinished',+  event: 'gtm-registrationFinished',
   action: 'finished',   action: 'finished',
   category: 'registration',   category: 'registration',
Line 158: Line 158:
 </code> </code>
  
-**login**+**gtm-login**
 <code> <code>
 { {
-  event: 'login',+  event: 'gtm-login',
   action: 'login',   action: 'login',
   category: 'authorization',   category: 'authorization',
 +  userID: USER_ID
 } }
 +
 +USER_ID is current user id
 </code> </code>
  
-**logout**+**gtm-logout**
 <code> <code>
 { {
-  event: 'logout',+  event: 'gtm-logout',
   action: 'logout',   action: 'logout',
   category: 'authorization',   category: 'authorization',
Line 176: Line 179:
 </code> </code>
  
-**slipBuy**+**gtm-slipBuy**
 <code> <code>
 { {
-  event: 'slipBuy',+  event: 'gtm-slipBuy',
   action: SLIP_TYPE,   action: SLIP_TYPE,
   category: 'slip_buy',   category: 'slip_buy',
Line 201: Line 204:
 </code> </code>
  
-**addBetToBettingSlip**+**gtm-addBetToBettingSlip**
 <code> <code>
 { {
-  action: 'addBetToBettingSlip',+  action: 'gtm-addBetToBettingSlip',
   gameModuleName: GAME_MODULE_NAME,   gameModuleName: GAME_MODULE_NAME,
   eventUUIDS: EVENT_UUIDS,   eventUUIDS: EVENT_UUIDS,
Line 218: Line 221:
 </code> </code>
  
-**depositSuccess**+**gtm-depositSuccess**
 <code> <code>
 { {
-  event: 'depositSuccess',+  event: 'gtm-depositSuccess',
   action: METHOD,   action: METHOD,
   category: 'deposit',   category: 'deposit',
   label: USER_ID,   label: USER_ID,
   value: AMOUNT,   value: AMOUNT,
 +  userID: USER_ID,
 +  amount: AMOUNT,
 +  depositsCount: DEPOSIT_COUNT,
 } }
  
Line 231: Line 237:
 USER_ID is current user id USER_ID is current user id
 AMOUNT is user's deposit amount AMOUNT is user's deposit amount
 +DEPOSIT_COUNT is the number of initiated deposit, e.g. 1, 2, 3, ... (meaning 1st deposit, 2nd deposit, ...)
 </code> </code>
  
-**withdrawalSuccess**+**gtm-withdrawalSuccess**
 <code> <code>
 { {
-  event: 'withdrawalSuccess',+  event: 'gtm-withdrawalSuccess',
   action: METHOD,   action: METHOD,
   category: 'withdrawal',   category: 'withdrawal',
Line 248: Line 255:
 </code> </code>
  
-**myAccountMenuDepositButtonClick**+**gtm-myAccountMenuDepositButtonClick**
 <code> <code>
 { {
-  event: 'myAccountMenuDepositButtonClick',+  event: 'gtm-myAccountMenuDepositButtonClick',
   action: 'click',   action: 'click',
   event_category: 'deposit',   event_category: 'deposit',
Line 261: Line 268:
 </code> </code>
  
-**viewContent**+**gtm-viewContent**
 <code> <code>
 { {
-   event: 'viewContent',+   event: 'gtm-viewContent',
    action: 'viewContent',    action: 'viewContent',
    label: CONTENT NAME,    label: CONTENT NAME,
  • admin/online-platform-cms/google-events.txt
  • Last modified: 2024/05/09 06:34
  • by evaldas-luksys