Event Actions¶
Paid Content Identify¶
Triggered when a user clicks on the Paid Content Identify Button. This button is always part of the Purchase Overlay.
Paid Content Purchase¶
Triggered when a user clicks the Paid Content Purchase Button to start a checkout process for the selected purchase option. This button is part of the Purchase Overlay.
When using Custom Analytics Integration, this Event Action comes with the following Additional Event Data:
title
The title of the currently selected purchase optionprice
An object containing the following properties of the currently selected purchase option:currency
amount
The amount in centspayment_model
“pay_now” or “pay_later”
sales_model
“single_purchase”, “timepass” or “subscription”
Legacy Support¶
The follow Additional Event Data is still supported, but deprecated in Connector Script 3:
purchaseType
The payment model (formerly named “purchase type”) of the currently selected purchase option, “ppu” represents “Pay Later” (formerly named “Pay Per Use”) and “sis” represents payment model “Pay Now” (formerly named “Single Item Sale”). This field has been replaced bysales_model
.price
An object containing acurrency: price
pair for the currently selected purchase option
Examples:¶
Example of Additional Event Data for a Single Purchase:
{
"title": "This article",
"price": {
"amount": 50,
"currency": "EUR",
"payment_model": "pay_later"
},
"sales_model": "single_purchase"
}
Example of Additional Event Data for a Time Pass:
{
"title": "Example One Day Time Pass",
"price": {
"amount": 100,
"currency": "EUR",
"payment_model": "pay_now"
},
"sales_model": "timepass"
}
Paid Content Purchase Complete¶
Triggered when a user returns after having completed a checkout process for a Single Purchase, Time Pass or Subscription purchase option.
This event comes with the same Additional Event Data as the event Paid Content Purchase.
Paid Content Replacement Show¶
Triggered when the Paid Content Replacement has been rendered.
The Paid Content Replacement consists of the Purchase Overlay and the blurrend replacement content.