Barion Pixel API reference: Difference between revisions

From Barion Documentation
Jump to navigation Jump to search
No edit summary
(142 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{PageTitle|title=Barion Pixel Documentation}}
{{PageTitle|title=Barion Pixel}}


The Barion pixel is a snippet of JavaScript code that allows you to track visitor activity on your website. It works by loading a small library of functions which you can use whenever a site visitor takes an action that you want to track (called an event).
{| style="margin-left:2em;" align="right"
| __TOC__
|}
 
The Barion Pixel is JavaScript code that allows you to track visitor activity on your website. It works by loading a
JavaScript function which you can use whenever a site visitor takes an action that you want to track (this action is
called an event).
 
In order to implement the Pixel, you will need:
* access to your website's HTML code base
* your Barion Pixel ID that you can access from your Barion Wallet


In order to implement the pixel, you will need:
By default, the Pixel will track pages visited, and the devices your visitors use. In addition, you can use the
* access to your website's code base
Pixel's JavaScript function to track other events that are associated with webshop usage and e-commerce. Without
* your pixel's base code and associated IDs (barionPixelID)
collecting the consent of the website visitor you must still use the Barion Pixel on your website for fraud management
purposes. (Tracking visitor behavior for the purposes of preventing fraud is considered a legitimate interest of
Barion and the merchant in contract with Barion). The implementation of the base code is considered mandatory for using
the Barion Smart Gateway.


== Implementation ==
= Implementing the base code for fraud prevention =


The Barion pixel is a snippet of JavaScript code that loads a small library of functions you can use to track visitor activity on your website. It relies on Barion cookies. By default, the pixel will track URLs visited, domains visited, and the devices your visitors use. In addition, you can use the pixel's library of functions to track other events that are associated with webshop usage and ecommerce.
Implementing the base code is not only required for you to be considered for special offers relating to the Barion
Pixel, but also for using the Barion Smart Gateway at all. This is based on the fact that both Barion and you as the
website owner have a legitimate interest in fraud management, and the data provided by the Barion Pixel greatly helps
these efforts. This, as a legitimate interest case, is fully compliant with the GDPR, and must be implemented
independently of any consent management software that your site may use.


=== Base code ===


Before you can install the pixel, you will need your pixel's base code.


==== Figure 1 ====
== Init (init) ==
<nowiki>
<script>


  (function(i,s,o,g,r,a,m){i['BarionAnalyticsObject']=r;i[r]=i[r]||function(){
* User intent: View pages on your site
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
* To be implemented at: Every page load, in the document head tag
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
* Why do we need this: This provides very basic information on user sessions, and can be implemented very easily
  })(window, document, 'script', 'http://track.barion.com/bt.js', 'bat');
 
  // initialize the pixel
  bat('init', 'addBarionPixelId', 'barionPixelID');


</script>
To use the Pixel, you need to add the following code (referred to as the base code) between the opening and closing
<noscript>
<head> tags on every page of your site. Most developers add it to their website's persistent header, so that it appears
automatically on all loaded pages.


  <img height="1" width="1" style="display:none" src="http://track.barion.com/a.gif?__ba_client_id=[Your ClientID goes here]&__ba_website_id=[Your WebsiteID goes here]&__ba_pixel_id=[Your Barion Pixel ID goes here]&ev=PageView&noscript=1"/>
<strong>Be sure to insert your unique Barion Pixel ID at both locations in the provided code
example, marked by a red outline.</strong>


</noscript>
Placing the code within your <head> tags reduces the chances of browsers or third-party code blocking the Pixel's
</nowiki>
execution. It also executes the code sooner, increasing the chance that your visitors are tracked before they leave your
page. Sending the data happens asynchronously in the client's browser so that it does not affect user experience.


When run, this code will download a library of functions which you can then use for tracking. It also automatically tracks a single PageView conversion by calling the bat() function each time it loads. We recommend that you leave this function call intact.


=== Installing The Pixel ===


To install the pixel, we highly recommend that you add its base code between the opening and closing <head> tags on every page where you will be tracking website visitor actions. Most developers add it to their website's persistent header, so it can be used on all pages, but it could be used before the closing body tag (</body>) as well.
'''Implementation of the base code'''


Placing the code within your <head> tags reduces the chances of browsers or third-party code blocking the pixel's execution. It also executes the code sooner, increasing the chance that your visitors are tracked before they leave your page.
    <nowiki>
        <script>
            (function(i,s,o,g,r,a,m){i['BarionAnalyticsObject']=r;i[r]=i[r]||function(){
            (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
            m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
            })(window, document, 'script', 'https://pixel.barion.com/bp.js', 'bp');


There are two ways to track conversions with the pixel:
            // send page view event
* standard events, which are visitor actions that we have defined and that you report by calling a pixel function
            bp('init', 'addBarionPixelId', </nowiki><span style="color:red">'BP-0000000000-00'</span><nowiki>);
* custom events, which are visitor actions that you have defined and that you report by calling a pixel function
        </script>


=== Standard Events ===
        <noscript>
            <img height="1" width="1" style="display:none" src="https://pixel.barion.com/a.gif?__ba_pixel_id=</nowiki><span style="color:red">'BP-0000000000-00'</span><nowiki>&ev=contentView&noscript=1"/>
        </noscript>
    </nowiki>


Standard events are predefined visitor actions that correspond to common, conversion-related activities, such as searching for a product, viewing a product, or purchasing a product. Standard events support parameters, which allow you to include an object containing additional information about an event, such as product IDs, categories, and the number of products purchased.  
If you use an ecommerce plugin (e.g. Woocommerce) and Google Tag Manager is enabled on your site you can easily implement the base code through it. See the example below.


In order to track an event the event needs to be fired, that is the corresponding event with its properties need to be added inside Your javascript or page. This can be seen on Figure 2 and Figure 3.
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> Implementing the base code in the Google Tag Manager </strong>
|-
| Google Tag Manager enables managing custom JavaScript snippets and HTML tags. The next 13 steps below outline how to implement the Base Code in the GTM. Use the arrow for the next step.


==== Figure 2 ====
<gallery mode="slideshow" widths=1662px heights=1662px >
Image:Datamongtm-1.png|1. GTM screen
Image:Datamongtm-2.png|2. Click on Tags in Current Workspace on the left side
Image:Datamongtm-3.png|3. Click on New on the screen that appears
Image:Datamongtm-4.png|4. Name the tag as you like, for example to "Barion Pixel - Base Code"
Image:Datamongtm-5.png|5. Click into the "Choose a tag" box
Image:Datamongtm-6.png|6. Choose "Custom HTML" in the dropdown
Image:Datamongtm-7.png|7. Paste the Base Code into the HTML box
Image:Datamongtm-8.png|8. Put your own Pixel ID into both places
Image:Datamongtm-9.png|9. Verify that you have put your own Pixel ID into both places
Image:Datamongtm-10.png|10. Click into the "Triggering" box
Image:Datamongtm-11.png|11. Choose "All Pages" from the list
Image:Datamongtm-12.png|12. Verify triggering on all pages and your Pixel ID in both places, then click "Save"
Image:Datamongtm-13.png|13.The new tag shoud appear in the Tags list
</gallery>
|}


<nowiki>
= Full Implementation for marketing purpose=


var contentViewProperties = {
This is the list of all events that are supported by the Barion Pixel. You have to implement the following events on your site in every location applicable. The more accurately you implement these, the better service quality we can provide for you, especially in connection to your market and your users, as we will receive more and better data about them. Events may require parameters that must be included in the bp function call as a JS object. These contain additional information about an event, for example product IDs, categories, and the number of products purchased. If any properties are not required and are not applicable in your case, you can simply skip them.
    'id': 'My blog page',
When the implementation is finished, all events must be send and checked by watching browser console messages throughout user journeys (click on product, add to cart, initiate checkout, test purchase etc.).
    'contentType': 'Page',
    'name': 'Very cool product',
}
bat('track', 'contentView', contentViewProperties);
</nowiki>


==== Figure 3 ====


<nowiki>
== Consent (grantConsent, rejectConsent) ==
$("#addtocart_button").click(function(){


    // sample product data
* User intent: Give or reject Barion Pixel consent
    var addToCartPorperties = {
* To be implemented at: Inside your own consent management software
        'id': 'a',
* Why do we need this: Participation of webshop clients is entirely consent based complying with the GDPR
        'contentType': 'Page',
        'name': 'a',
        'ean': 'a',
        'unitPrice': 1000,
        'totalItemPrice': 2000,
        'unit': 'kg',
        'currency': 'huf',
        'quantity': 2, 
    }   


    bat('track', 'addToCart', addToCartPorperties);
Consent events determine which of the sent data can be used by us for marketing purposes. Two consent events can be
used to control user consent. The "grantConsent" event has to be sent when the visitor accepts the cookie policy
that expressly allows Barion to use data for marketing purposes. Sending this event must be handled by your own consent
management implementation that you are responsible for as outlined in our terms. The "rejectConsent" event should be
sent when the customer rejects the cookie policy that includes Barion Pixel functionality. It should be noted that
rejecting Barion marketing consent does not mean that no data should be sent towards Barion, as Barion has a legitimate
interest using this data for fraud management. Rejecting Barion consent however means that the data from that session
will not be used for marketing purposes at all, despite receiving it. All consent events are sent by calling the Pixel's
consent function as shown below. Usage of a fully compliant consent management platform (CMP) is strongly recommended by Barion. You can find our recommendation [[#Consent_management_requirements|here]]


});
</nowiki>


All standard events are tracked by calling the pixel's bat('track') function, with the event name, and a JSON object as its parameters (sometimes optional). For example, here's a function call to track when a visitor has completed a purchase event, with currency and value included as a parameter. (Figure 2)


=== Standard event descriptions ===
'''Consent event implementation example'''


With these standard events one can describe a lot of ecommerce related user actions in a meaningful way. Each event have its own set of properties that are needed in order to fully understand and record the users intentions/behaviour.
    <nowiki>
        bp('consent', 'grantConsent');
        bp('consent', 'rejectConsent');
    </nowiki>


====Table 1: Event descriptions====


== Content View (contentView) ==
* Firing event: ''Page load'' of item pages minimally, preferably on all pages that refers to a single item, offer or promotion
* User intent: View the page that shows a single offer described exclusively
* Why do we need this: Offer descriptions help us know more about your offers
This event should be fired when one of your users enters a page that refers to one of your items that can be bought,
and describes it in general terms, with an offer to buy. This can be something like an offer page on an e-commerce
website or a product page on a retail site. It is important to not confuse this with a full product detail page where
the product itself is described in greater detail, but there is no information on price, shipping and other details that
are relevant to you offer, like in the case of a product manual.
''' Content view event properties  '''
{| class="wikitable"
{| class="wikitable"
|+ Standard event descriptions
! key
! Event name
! required
! Description
! type
! description
|-
|-
! setUserProperties
! contentType
| With this event One can add user related information.
| YES
| text
| If this is a product page as per minimal requirements, this value should be "Product". Otherwise select a value that best fits from these: Page/Product/Article/Promotion/Banner/Misc.
|-
|-
! contentView
! currency
| User sees a certain content on a page (e.g. product, article, promotion, banner, etc). When a key page is viewed such as a product page. This event may be fired on pageload.
| YES (in case of "Product")
| text (ISO 4217)
| The currency that the product price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
|-
|-
! clickProduct
! id
| A click on a product in any list (search, recommendation box, etc). Usually fired at user click
| YES
| text
| An unique ID that you have for the offer, this can be your ID for the product, an SKU or a promotion ID.
|-
|-
! clickProductDetail
! name
| A click of product details. (e.g. more info link). Usually fired when user clicks.
| YES
| text
| The full name that you have for the offer, for example a product name (eg. Red Bull 24pcs carton). Please note that item names should be consistent in all events.
|-
|-
! customizeProduct
! quantity
| When a person customizes a product. (color, size, etc). Typically fired at user click.
| YES (in case of "Product")
| float
| The quantity of the product offered as initially given on the page.
|-
|-
! clickPromo
! unit
| A click on an internal promotion. Fired at mouse click.
| YES (in case of "Product")
| text
| The unit that your offer is measured in (eg. pieces, kg, m).
|-
|-
! addToCart
! unitPrice
| This event may be fired when a product is added to the shopping cart (users clicks on an add to cart button) upon user clicks.
| YES (in case of "Product")
| float
| The price of one measurement of your offer in the given currency.
|-
|-
! removeFromCart
! brand
| This event may be fired when a product is removed to the shopping cart (users clicks on an add to cart button) upon user clicks.
| NO
| text
| The brand of the offer.
|-
|-
! initiateCheckout
! category
| This event may be fired when a the user checks out the cart, clicks on the checkout button.
| NO
| text
| | The subcategory branch (preferred, eg. 'clothes|shoes|winter', separate levels with '|') or single category (eg. 'winter shoes' or 'summer shoes') of the offer.
|-
|-
! addPaymentInfo
! [[#Special_properties|contents]]
| When payment information is added in the checkout flow, this event may be fired upon user click.
| NO
| array
| An array of JS objects for detailing multiple items of the offer. For more details see the table below.
|-
|-
! initiatePurchase
! creative
| A person clicks on a purchase button (and possibly enters the Thank You Page).
| NO
| text
| The name or description of the promotion, for example a promotion picture filename or slogan.
|-
|-
! purchase
! customerValue
| When a purchase is made or checkout flow is completed. Successful or unsuccesful. This may be employed on the Thank you page (typically) on pageload.
| NO
| float
| A metric that you define that measures the value of the action performed to your business.
|-
|-
! search
! ean
| When a search is entered into a search field upon sending the form, this event may be fired.
| NO
| text
| Contains the International Article Number (EAN) of the offer if available.
|-
|-
! signUp
! imageUrl
| To track user signup, when a registration form is completed/sent to the server (just when the status is OK), this event may be fired upon pageload.
| NO
| text
| The URL of the image of the viewed item.
|-
|-
! grantConsent
! list
| User consent is granted for tracking.
| NO
| text
| The function of the loaded page from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
|-
|-
! revokeConsent
! positioning
| User consent is revoked for tracking.
| NO
| text
| The product's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
|-
|-
! rejectConsent
! step
| User consent is rejected for tracking.
| NO
| integer
| If the page is displayed along the checkout process, the checkout step number that the page is displayed in, numbered from 0 as the checkout initiation.
|-
|-
! error
! variant
| If one want to track errors this event may be used for that.
| NO
| text
| The variant of the offer from the list of possible identical items (eg. the color of a phone or the time and venue of a concert or movie)
|}
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
''' Content view event implementation examples: '''
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For physical items </strong>
|-
|  // example properties for a product page
        var contentViewProperties = {
            'contentType': 'Product',
            'currency': 'HUF',
            'id': 'item_42',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'quantity': 10.0,
            'unit': 'pcs.',
            'unitPrice': 4990.0,
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': undefined,
            'creative': undefined,
            'customerValue': 150.0,
            'ean': '9780575115347',
            'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
            'list': 'ProductPage',
            'positioning': undefined,
            'step': undefined,
            'variant': 'hardcover'
        }
        // example properties on a home page for a promotion of a product
        var contentViewProperties = {
            'contentType': 'Promotion',
            'currency': 'HUF',
            'id': 'item_42',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'quantity': 10.0,
            'unit': 'pcs.',
            'unitPrice': 4990.0,
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': undefined,
            'creative': 'book_promo_02',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
            'list': 'HomePage',
            'positioning': '2',
            'step': undefined,
            'variant': 'hardcover'
        }
        // example properties on a checkout page for a promotion of a product
        var contentViewProperties = {
            'contentType': 'Promotion',
            'currency': 'HUF',
            'id': 'item_42',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'quantity': 10.0,
            'unit': 'pcs.',
            'unitPrice': 4990.0,
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': undefined,
            'creative': 'also_bought_05',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
            'list': 'Checkout',
            'positioning': '5',
            'step': 2,
            'variant': 'hardcover'
        }


===Custom events===


Custom events may be defined, with arbitrary text data as parameters. One way to do so is to fire the customEvent event depicted in Figure 4. The event may hold up to 5 attributes: eventCategory, eventAction, eventProperty, eventLabel, eventValue. If You want to add custom properties to standard events You may do so by adding the “_” prefix to that particular event. This is denoted in Figure 5.
        bp('track', 'contentView', contentViewProperties);


<nowiki>
|}


// sample customData
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
var customData = {
| <strong> For ticket sellers </strong>
    eventCategory: 'Video',
|-
    eventAction: 'play',
// example properties for a product page
    eventProperty: 'video',
        var contentViewProperties = {
    eventLabel: 'Fall Campaign',
            'contentType': 'Product',
    eventValue: 42       
            'currency': 'GBP',
}
            'id': 'metalica_12',
            'name': 'Metallica',
            'quantity': 1.0,
            'unit': 'pcs.',
            'unitPrice': 300.0,
            'brand': undefined,
            'category': 'Pop|Metal',
            'contents': undefined,
            'creative': undefined,
            'customerValue': 150.0,
            'ean': undefined,
            'imageUrl': "https://www.revolvermag.com/sites/default/files/styles/image_954_x_537/public/media/images/article/metallicapr.jpg",
            'list': 'ProductPage',
            'positioning': undefined,
            'step': undefined,
            'variant': '2019.06.08 20:00|Slane Castle'
        }


bat('track', 'customEvent', customData);
        // example properties on a home page for a promotion of a product
</nowiki>
        var contentViewProperties = {
            'contentType': 'Promotion',
            'currency': 'GBP',
            'id': 'metalica_12',
            'name': 'Metallica',
            'quantity': 1.0,
            'unit': 'pcs.',
            'unitPrice': 300.0,
            'brand': undefined,
            'category': 'Pop|Metal',
            'contents': undefined,
            'creative': 'metallica_promo_02',
            'customerValue': 150.0,
            'ean': undefined,
            'imageUrl': "https://www.revolvermag.com/sites/default/files/styles/image_954_x_537/public/media/images/article/metallicapr.jpg",
            'list': 'HomePage',
            'positioning': '2',
            'step': undefined,
            'variant': '2019.06.08 20:00|Slane Castle'
        }


<nowiki>
        // example properties on a checkout page for a promotion of a product
var contentViewProperties = {
        var contentViewProperties = {
        'id': 'My blog page',
            'contentType': 'Promotion',
        'contentType': 'Page',
            'currency': 'GBP',
        'name': 'Very cool product',
            'id': 'metalica_12',
        '_mycustomparameter': 42
            'name': 'Metallica',
    }
            'quantity': 1.0,
            'unit': 'pcs.',
            'unitPrice': 300.0,
            'brand': undefined,
            'category': 'Pop|Metal',
            'contents': undefined,
            'creative': 'also_bought_05',
            'customerValue': 150.0,
            'ean': undefined,
            'imageUrl': "https://www.revolvermag.com/sites/default/files/styles/image_954_x_537/public/media/images/article/metallicapr.jpg",
            'list': 'Checkout',
            'positioning': '5',
            'step': 2,
            'variant': '2019.06.08 20:00|Slane Castle'
        }


    bat('track', 'contentView', contentViewProperties);
</nowiki>


===Event Properties===
        bp('track', 'contentView', contentViewProperties);
 
|}
 


Each event may hold a given set of parameters in order to describe a particular user action. In order to provide complete data some parameters are '''mandatory/required''' while some a '''optional'''. Properties are given to the event in a standard Javascript object with assigning each property (key) a value.


A value has a value type. Some are primitive types like '''text, integer''' and '''float''' types and there are two compound types '''item_list''' and the '''address''' a value type. Only compound types are enforced with validation, primitive types are converted during validation and message sending implicitly if the value type is different from the required value type. Text values are truncated to 1024 characters.
== Add to Cart (addToCart) ==


* Firing event: ''Button click'' that results in a product to be selected for purchase
* User intent: Select product for purchase
* Why do we need this: Users demonstrate strong interest in your items by selecting them for purchase


====Standard properties====
The add to cart event is, as its name suggests, connected to a user "adding a product to their cart". Usually this means
that a user decide to purchase a product or service, and has added this item to their cart. Even if your website does
not use carts in the literal sense, there is a point in a user session where the given user decides that they intend to
purchase the product. This exact intent is what we want to capture here, so the button click which best matches the
point of this intent, such as one labeled 'Buy' or 'Reserve' should be the one to attach this event to.


The table here shows all standard properties that are used throughout the tracking. Each property is context sensitive, which means only a handful of properties are needed in each event, and from those only some may be required.


=====Table 2: Standard properties=====


'''Add to cart event properties'''
{| class="wikitable"
{| class="wikitable"
|+ Standard properties
! key
! name
! required
! type
! type
! description
! description
|-
|-
! id
! contentType
| YES
| text
| text
| SKU of product/id of article/the promotion ID/etc.
| Usually, this value should be "Product".
|-
! currency
| YES
| text (ISO 4217)
| The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
|-
|-
! contentType
! id
| YES
| text
| text
| The content type of the page visited. Possible values: Page/Product/Article/Promotion/Banner/Misc. Values here are enforced/validated.
| An unique ID that you have for the item, this can be your ID for the product, an SKU or a promotion ID.
|-
|-
! name
! name
| YES
| text
| text
| Full name of product/article/promotion etc (e.g. Android T-Shirt or e.g. Summer Sale)
| The full name that you have for the added item, for example a product name (eg. Red Bull 24pcs carton).
|-
! quantity
| YES
| float
| The quantity of the item added to the cart.
|-
|-
! ean
! totalItemPrice
| YES
| float
| The total price of the added items in the given currency.
|-
! unit
| YES
| text
| text
| Contains the International Article Number (EAN) when applicable.
| The unit that your item is measured in (eg. pieces, kg, hours).
|-
! unitPrice
| YES
| float
| The price of one measurement of your item in the given currency.
|-
|-
! brand
! brand
| NO
| text
| text
| Brand part of product/brand described in name
| The brand of the item.
|-
|-
! category
! category
| NO
| text
| text
| Array of categories of product/article/etc. If category is in tree structure, they must be separated with pipe (e.g. "clothes|coat|winter" or "clothes|coat|autumn").
| | The subcategory branch (preferred, eg. 'clothes|shoes|winter', separate levels with '|') or single category (eg. 'winter shoes' or 'summer shoes') of the item.
|-
|-
! variant
! [[#Special_properties|contents]]
| NO
| array
| An array of JS objects for detailing multiple items of the item. For more details see the table below.
|-
! coupon
| NO
| text
| The coupon code that was used when the item was added to cart.
|-
! creative
| NO
| text
| The name or description of the promotion for the item, for example a promotion picture filename or slogan of the promotion that adds the items to the cart automatically.
|-
! customerValue
| NO
| float
| A metric that you define that measures the value of the action performed to your business.
|-
! ean
| NO
| text
| text
| The variant of the product (e.g. Black)
| Contains the International Article Number (EAN) of the offer if available.
|-
|-
! description
! list
| NO
| text
| text
| The detailed description of the item.
| The function of the loaded page from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
|-
|-
! imageUrl
! positioning
| NO
| text
| text
| A URL pointing to an image that shows the item. E.g. the picture of the product
| The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
|-
|-
! unit
! step
| NO
| integer
| If the page is displayed along the checkout process, the checkout step number that the page is displayed in, numbered from 0 as the checkout initiation.
|-
! variant
| NO
| text
| text
| The measurement unit of the item. (e.g. pcs, litre)
| The variant of the offer from the list of possible identical items (eg. the color of a phone or the time and venue of a concert or movie)
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
 
 
''' Add to cart event implementation examples: '''
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For physical items </strong>
|-
|  // sample product data for single items
        var addToCartProperties = {
            'contentType': 'Product',
            'currency': 'HUF',
            'id': 'item_42',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'quantity': 10.0,
            'totalItemPrice': 49900.0,
            'unit': 'pcs.',
            'unitPrice': 4990.0,
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': undefined,
            'coupon': '43763436874',
            'creative': 'product_page_promo_42',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'ProductPage',
            'positioning': '3',
            'step': undefined,
            'variant': 'hardcover'
        }
 
        // sample product data for bundled items
        var addToCartProperties = {
            'contentType': 'Product',
            'currency': 'HUF',
            'id': 'item_42pack',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'quantity': 10.0,
            'totalItemPrice': 150000.0,
            'unit': 'pcs.',
            'unitPrice': 15000.0,
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': [{
                'contentType': 'Product',
                'currency': 'HUF',
                'id': 'item_42',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 7500.0,
                'unit': 'pcs',
                'unitPrice': 2500.0,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                },
                {
                'contentType': 'Product',
                'currency': 'USD',
                'id': 'item_42en',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 25935,
                'unit': 'pcs',
                'unitPrice': 8645,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                }],
            'coupon': '43763436874',
            'creative': 'add_to_cart_promo_42',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'BasketPage',
            'positioning': '3',
            'step': undefined,
            'variant': 'hardcover'
        }
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('addtocart_button').addEventListener('click', function() {
            bp('track', 'addToCart', addToCartProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#addtocart_button").click(function() {
            bp('track', 'addToCart', addToCartProperties);
        });
 
|}
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For ticket sellers </strong>
|-
|-
! unitPrice
|    // sample product data for single items
| float
        var addToCartProperties = {
| Price of product (the price of one measurement unit of the item).
            'contentType': 'Product',
            'currency': 'GBP',
            'id': 'metalica_12',
            'name': 'Metallica',
            'quantity': 2.0,
            'totalItemPrice': 600.0,
            'unit': 'pcs.',
            'unitPrice': 300.0,
            'brand': undefined,
            'category': 'Pop|Metal',
            'contents': undefined,
            'coupon': '43763436874',
            'creative': 'product_page_promo_metallica',
            'customerValue': 150.0,
            'ean': undefined,
            'list': 'ProductPage',
            'positioning': '3',
            'step': undefined,
            'variant': '2019.06.08 20:00|Slane Castle'
        }
 
        // sample product data for bundled items
        var addToCartProperties = {
            'contentType': 'Product',
            'currency': 'GBP',
            'id': 'spring_festival_two_tickets',
            'name': "Spring Festival ticket",
            'quantity': 2.0,
            'totalItemPrice': 1800.0,
            'unit': 'pcs.',
            'unitPrice': 900.0,
            'brand': undefined,
            'category': 'Festival',
            'contents': [{
                'contentType': 'Product',
                'currency': 'GBP',
                'id': 'metalica_12',
                'name': 'Metallica',
                'quantity': 2.0,
                'totalItemPrice': 800.0,
                'unit': 'pcs',
                'unitPrice': 400.0,
                'brand': undefined,
                'category': 'Pop|Metal',
                'description': 'Early Bird',
                'ean': undefined,
                'imageUrl': "https://www.revolvermag.com/sites/default/files/styles/image_954_x_537/public/media/images/article/metallicapr.jpg",
                'variant': '2019.06.08 20:00|Slane Castle'
                },
                {
                'contentType': 'Product',
                'currency': 'GBP',
                'id': 'snoop_dog_2019',
                'name': "Snoop Dog",
                'quantity': 2.0,
                'totalItemPrice': 1000.0,
                'unit': 'pcs',
                'unitPrice': 500,
                'brand': undefined,
                'category': 'Rap',
                'description': 'Early Bird',
                'ean': undefined,
                'imageUrl': 'https://cdn1.thr.com/sites/default/files/2012/08/snoop-dogg-pr-08-p.jpg',
                'variant': '2019.06.08 20:00|Slane Castle'
                }],
            'coupon': '43763436874',
            'creative': 'add_to_cart_promo_42',
            'customerValue': 150.0,
            'ean': undefined,
            'list': 'BasketPage',
            'positioning': '3',
            'step': undefined,
            'variant': '2019.06.08 20:00|Slane Castle'
        }
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('addtocart_button').addEventListener('click', function() {
            bp('track', 'addToCart', addToCartProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#addtocart_button").click(function() {
            bp('track', 'addToCart', addToCartProperties);
        });
|}
 
 
 
== Initiate Checkout (initiateCheckout) ==
 
* Firing event: ''Button click'' that starts the checkout process
* User intent: Purchase the items in the cart
* Why do we need this: Users usually are put off by adverts of an item they already purchased, but can be receptive to related products
 
Usually on a webshop, there is a checkout process that starts with clicking a button with items in your cart. This
button click is the one that this event should be attached to. After this click, typically the user has to provide other
data, such as a shipping address and method, and confirm the purchase (which should fire the initiate purchase event).
 
 
 
'''Initiate checkout event properties'''
{| class="wikitable"
! key
! required
! type
! description
|-
|-
! totalItemPrice
! [[#Special_properties|contents]]
| float
| YES
| The total price of the item.
| array
| An array of JS objects for detailing the actual items contained in the cart, meaning the shipping and coupons should be excluded. For the detailed format see the table below.
|-
|-
! currency
! currency
| text (ISO 4217 format)
| YES
| Currency of product. 3 digit ISO-4217 format is preferred.
| text (ISO 4217)
| The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
|-
! revenue
| YES
| float
| The total revenue associated with the transaction in the given currency. This should include all costs the customer pays like shipping or tax.
|-
|-
! quantity
! step
| YES
| integer
| integer
| The quantity of a product (e.g. 2)
| In most cases, since this is the first checkout step, this should be 1.
|-
|-
! contents
! contentType
| item_list
| NO
| An array of item type JSON objects. For appropriate structure refer to Item definition in this chapter later.
|-
! list
| text
| text
| The list or collection to which the product belongs (e.g. Search Results)
| Usually this value should be "Product".
|-
|-
! position
! coupon
| NO
| text
| text
| The product's position in a list or collection (e.g. 2) or the position of the creative (e.g. banner_slot_1)
| The coupon code that is being used.
|-
|-
! creative
! creative
| NO
| text
| text
| The creative associated with the promotion (e.g. summer_banner2)
| The name or description of the promotion for the cart, for example a promotion picture filename or slogan of the promotion that starts the checkout automatically.
|-
! customerValue
| NO
| float
| A metric that you define that measures the value of the action performed to your business.
|-
|-
! step
! list
| integer
| NO
| A number representing a step in the checkout process. Optional on checkout actions.
| text
| In most cases this should be 'Checkout'.
|-
|-
! coupon
! opt
| NO
| text
| text
| The transaction coupon code redeemed with the transaction.
| Additional information about the purchase.
|-
|-
! orderNumber
! orderNumber
| NO
| text
| text
| Required if the action is purchase.
| The unique ID of the purchase.
|-
|-
! revenue
! positioning
| NO
| text
| The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
|-
! shipping
| NO
| float
| float
| Specifies the total revenue or grand total associated with the transaction (e.g. 11.99). This value includes shipping, tax costs, or other adjustments to revenue that you want to include as part of your revenue calculations. Note: if revenue is not set, its value will be automatically calculated using the product quantity and price fields of all products in the same hit.
| The price of shipping associated with the purchase in the given currency.
|-
! shippingAddress
| NO
| object
| The shipping address given in the format detailed below.
|-
|-
! tax
! tax
| NO
| float
| float
| The total tax associated with the transaction
| The tax associated with the purchase in the given currency.
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
 
 
''' Initiate checkout event implementation examples: '''
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For physical items </strong>
|-
|-
! shipping
|  // sample product data
        var initiateCheckoutProperties = {
            'contents': [{
                'contentType': 'Product',
                'currency': 'HUF',
                'id': 'item_42',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 7500.0,
                'unit': 'pcs',
                'unitPrice': 2500.0,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                },
                {
                'contentType': 'Product',
                'currency': 'USD',
                'id': 'item_42en',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 25935,
                'unit': 'pcs',
                'unitPrice': 8645,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                }],
            'currency': 'HUF',
            'revenue': 17500.0,
            'step': 0,
            'contentType': 'Product',
            'coupon': '43763436874',
            'creative': 'preselected_cart_01',
            'customerValue': 150.0,
            'list': 'Checkout',
            'opt': 'To postal office, no street address',
            'orderNumber': '852',
            'positioning': '1',
            'shipping': 2500.0,
            'shippingAddress': {
                'city': 'Budapest',
                'country': 'HU',
                'deliveryMethod': 'DHL',
                'fullName': 'John Doe',
                'phone': '+36 1 1111 111',
                'region': 'HU-BU',
                'street': 'Műegyetem rkpt. 3.',
                'street2': '2. porta',
                'zipCode': '1111'
            },
            'tax': 0.0
        }
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('checkout_button').addEventListener('click', function() {
            bp('track', 'initiateCheckout', initiateCheckoutProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#checkout_button").click(function() {
            bp('track', 'initiateCheckout', initiateCheckoutProperties);
        });
 
|}
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For ticket sellers </strong>
|-
|      // sample product data
        var initiateCheckoutProperties = {
            'contents': [{
                'contentType': 'Product',
                'currency': 'GBP',
                'id': 'metalica_12',
                'name': 'Metallica',
                'quantity': 2.0,
                'totalItemPrice': 600.0,
                'unit': 'pcs',
                'unitPrice': 300.0,
                'brand': undefined,
                'category': 'Pop|Metal',
                'description': 'Early Bird',
                'ean': '9780575115347',
                'imageUrl': 'https://www.revolvermag.com/sites/default/files/styles/image_954_x_537/public/media/images/article/metallicapr.jpg',
                'variant': '2019.06.08 20:00|Slane Castle'
                },
                {
                'contentType': 'Product',
                'currency': 'GBP',
                'id': 'snoop_dog_2019',
                'name': "Snoop Dog",
                'quantity': 3.0,
                'totalItemPrice': 1500.0,
                'unit': 'pcs',
                'unitPrice': 500,
                'brand': undefined,
                'category': 'Rap',
                'description': 'Early Bird',
                'ean': '9780575115347',
                'imageUrl': 'https://cdn1.thr.com/sites/default/files/2012/08/snoop-dogg-pr-08-p.jpg',
                'variant': '2019.04.02 23:00|Wembley'
                }],
            'currency': 'GBP',
            'revenue': 2100.0,
            'step': 0,
            'contentType': 'Product',
            'coupon': '43763436874',
            'creative': 'preselected_cart_01',
            'customerValue': 150.0,
            'list': 'Checkout',
            'opt': 'To postal office, no street address',
            'orderNumber': '852',
            'positioning': '1',
            'shipping': 2500.0,
            'shippingAddress': {
                'city': 'Budapest',
                'country': 'HU',
                'deliveryMethod': 'DHL',
                'fullName': 'John Doe',
                'phone': '+36 1 1111 111',
                'region': 'HU-BU',
                'street': 'Műegyetem rkpt. 3.',
                'street2': '2. porta',
                'zipCode': '1111'
            },
            'tax': 0.0
        }
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('checkout_button').addEventListener('click', function() {
            bp('track', 'initiateCheckout', initiateCheckoutProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#checkout_button").click(function() {
            bp('track', 'initiateCheckout', initiateCheckoutProperties);
        });
 
|}
 
 
== Initiate Purchase (initiatePurchase) ==
 
* Firing event: ''Button click'' that completes the checkout process
* User intent: Pay for the items in the cart
* Why do we need this: Users usually are put off by adverts of an item they already purchased, but can be receptive to related products
 
This event should be fired at the same time as the user is redirected to a payment solution's own website, for example
when the user is sent to the Barion Smart Gateway for payment. It should also be fired if the user chose a non-payment
checkout option, for example payment on receipt, but the transaction is considered complete. This should be the last
confirmation of the checkout process, after which the sale is considered to have taken place. Ideally after pressing
this button the user should reach either a 'payment pending' then a 'thank you' page, or simply the 'thank you' page.
 
 
 
'''Initiate purchase event properties'''
{| class="wikitable"
! key
! required
! type
! description
|-
! [[#Special_properties|contents]]
| YES
| array
| An array of JS objects for detailing the actual items contained in the cart, meaning the shipping and coupons should be excluded. For the detailed format see the table below.
|-
! currency
| YES
| text (ISO 4217)
| The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
|-
! revenue
| YES
| float
| float
| The shipping cost associated with the transaction.
| The total revenue associated with the transaction in the given currency. This should include all costs the customer pays like shipping or tax.
|-
|-
! shippingAddress
! step
| address
| YES
| This structure represents a shipping address related to a payment. See below the address type for the appropriate structure and syntax.
| integer
| It is its sequential number in checkout process.
|-
! contentType
| NO
| text
| Usually this value should be "Product".
|-
|-
! paymentMethod
! coupon
| NO
| text
| text
| Payment method of the purchase. E.g. Barion, PayPal, CashOnDelivery, Klarna
| The coupon code that is being used.
|-
|-
! option
! creative
| NO
| text
| text
| Additional field that can describe option information on the checkout page (e.g. delivery method)
| The name or description of the promotion for the cart, for example a promotion picture filename or slogan of the promotion that starts the checkout automatically.
|-
|-
! customerValue
! customerValue
| NO
| float
| float
| The value of a user performing this event to the business.
| A metric that you define that measures the value of the action performed to your business.
|-
! list
| NO
| text
| In most cases this should be 'Checkout'.
|-
! opt
| NO
| text
| Additional information about the purchase.
|-
! orderNumber
| NO
| text
| The unique ID of the purchase.
|-
|-
! searchString
! positioning
| NO
| text
| text
| In case of Search event. The string entered by the user for the search.
| The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
|-
|-
! totalResults
! shipping
| number
| NO
| Results found in case of a search
| float
| The price of shipping associated with the purchase in the given currency.
|-
! shippingAddress
| NO
| object
| The shipping address given in the format detailed below.
|-
! tax
| NO
| float
| The tax associated with the purchase in the given currency.
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
 
 
''' Initiate purchase event implementation examples: '''
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For physical items </strong>
|-
|  // sample product data
        var initiatePurchaseProperties = {
            'contents': [{
                'contentType': 'Product',
                'currency': 'HUF',
                'id': 'item_42',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 7500.0,
                'unit': 'pcs',
                'unitPrice': 2500.0,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                },
                {
                'contentType': 'Product',
                'currency': 'USD',
                'id': 'item_42en',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 25935,
                'unit': 'pcs',
                'unitPrice': 8645,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                }],
            'currency': 'HUF',
            'revenue': 17500.0,
            'step': 6,
            'contentType': 'Product',
            'coupon': '43763436874',
            'creative': 'preselected_cart_01',
            'customerValue': 150.0,
            'list': 'Checkout',
            'opt': 'To postal office, no street address',
            'orderNumber': '852',
            'positioning': '1',
            'shipping': 2500.0,
            'shippingAddress': {
                'city': 'Budapest',
                'country': 'HU',
                'deliveryMethod': 'DHL',
                'fullName': 'John Doe',
                'phone': '+36 1 1111 111',
                'region': 'HU-BU',
                'street': 'Műegyetem rkpt. 3.',
                'street2': '2. porta',
                'zipCode': '1111'
            },
            'tax': 0.0
        }
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('confirm_payment').addEventListener('click', function() {
            bp('track', 'initiatePurchase', initiatePurchaseProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#confirm_payment").click(function() {
            bp('track', 'initiatePurchase', initiatePurchaseProperties);
        });
 
|}
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For ticket sellers </strong>
|-
|    // sample product data
        var initiateCheckoutProperties = {
            'contents': [{
                'contentType': 'Product',
                'currency': 'GBP',
                'id': 'metalica_12',
                'name': 'Metallica',
                'quantity': 2.0,
                'totalItemPrice': 600.0,
                'unit': 'pcs',
                'unitPrice': 300.0,
                'brand': undefined,
                'category': 'Pop|Metal',
                'description': 'Early Bird',
                'ean': '9780575115347',
                'imageUrl': 'https://www.revolvermag.com/sites/default/files/styles/image_954_x_537/public/media/images/article/metallicapr.jpg',
                'variant': '2019.06.08 20:00|Slane Castle'
                },
                {
                'contentType': 'Product',
                'currency': 'GBP',
                'id': 'snoop_dog_2019',
                'name': "Snoop Dog",
                'quantity': 3.0,
                'totalItemPrice': 1500.0,
                'unit': 'pcs',
                'unitPrice': 500,
                'brand': undefined,
                'category': 'Rap',
                'description': 'Early Bird',
                'ean': '9780575115347',
                'imageUrl': 'https://cdn1.thr.com/sites/default/files/2012/08/snoop-dogg-pr-08-p.jpg',
                'variant': '2019.04.02 23:00|Wembley'
                }],
            'currency': 'GBP',
            'revenue': 2100.0,
            'step': 6,
            'contentType': 'Product',
            'coupon': '43763436874',
            'creative': 'preselected_cart_01',
            'customerValue': 150.0,
            'list': 'Checkout',
            'opt': 'To postal office, no street address',
            'orderNumber': '852',
            'positioning': '1',
            'shipping': 2500.0,
            'shippingAddress': {
                'city': 'Budapest',
                'country': 'HU',
                'deliveryMethod': 'DHL',
                'fullName': 'John Doe',
                'phone': '+36 1 1111 111',
                'region': 'HU-BU',
                'street': 'Műegyetem rkpt. 3.',
                'street2': '2. porta',
                'zipCode': '1111'
            },
            'tax': 0.0
        }
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('confirm_payment').addEventListener('click', function() {
            bp('track', 'initiatePurchase', initiatePurchaseProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#confirm_payment").click(function() {
            bp('track', 'initiatePurchase', initiatePurchaseProperties);
        });
 
|}
|}


====User Properties====


For the '''setUserProperties''' event there are a custom set of properties that may be set when used.
== Set User Properties (setUserProperties) ==
 
* Firing event: ''Button click'' when user properties are available
* User intent: Provide personal details
* Why do we need this: Information about users helps us give more relevant offers to them
 
This event should be attached to any browser event that when fired, can access user information. We handle all user
information in accordance with the GDPR and as such, all personally identifying information is hashed directly on the
client side, in the JS code, before being forwarded to us, which makes it impossible to read it on our side. This makes
it very important to fill out the properties provided below correctly, so that all PII falls in the correct fields that
will be hashed before sending. The pages that this event can be inserted into are mostly sign up or sign in pages,
newsletter subscription pages, and any other page where the user can provide information about themselves. This event
can also be sent during the checkout process.


=====Table 3: setUserProperties properties=====
 
 
'''Set user properties event properties'''


{| class="wikitable"
{| class="wikitable"
|+ setUserProperties properties
! key
! Key
! required
! Value Type
! hashed
! Description
! type
! Required
! description
|-
|-
! userId
! userId
| YES
| YES
| text
| Your ID for the user, for example an username, email or internal ID that you identify the user with on your site.
|-
! accountCreatedTime
| NO
| NO
| UNIX timestamp
| The time that the user account had been created, in a UNIX timestamp that is seconds accurate.
|-
! age
| NO
| NO
| text
| The age of the user.
|-
! city
| NO
| NO
| text
| The city that the user lives in.
|-
! country
| NO
| NO
| text
| The country that the user lives in, preferably in the ISO 3166-1 alpha-2 format, eg. HU or CZ.
|-
! region
| NO
| NO
| text
| The region that the user lives in, preferably in the ISO 3166-2 format, eg. HU-BU.
|-
! currency
| NO
| NO
| text
| text
| User Id
| Currency that the user prefers, or the one that the prices are displayed to them in. 3 digit ISO 4217 format is preferred (eg. HUF, EUR).
|-
! email
| NO
| YES
| YES
| text
| The email that belongs to the user.
|-
|-
! email
! gender
| NO
| NO
| text
| The gender of the user.
|-
! interests
| NO
| NO
| text
| text
| Email address. '''Hashed automatically for privacy purposes.'''
| | The interests of the user, separated with the pipe character, eg. "Arts|Games".
|-
! lang
| NO
| NO
| NO
| text
| The language of the user, preferably in the ISO 639-1 format, eg. hu or cz.
|-
|-
! phone
! phone
| NO
| YES
| text
| text
| Phone number ina format of IPF ()International Phone Number) eg. +1-541-754-3010. '''Hashed automatically for privacy purposes.'''
| Phone number of the user, preferably in the E.164 format, eg. +36 1 111 1111
|-
! shippingAddress
| NO
| NO
| object
| The address of the user in the format described below.
|-
! step
| NO
| NO
| NO
| text
| If the user properties are set in the checkout process, the checkout process step.
|-
|-
! accountCreatedTime
! zipCode
| UNIX timestamp
| NO
| When the user account was created
| NO
| NO
| text
| The ZIP code
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
''' Set user properties event implementation examples: '''
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> General example </strong>
|-
|-
! country
|  // sample user data
        var setUserPropertiesProperties= {
            'userId': 'user_42',
            'accountCreatedTime': 1557223622,
            'age': '12-24',
            'city': 'Budapest',
            'country': 'HU',
            'region': 'HU-BU',
            'currency': 'HUF',
            'email': '[email protected]',
            'gender': 'male',
            'interests': 'Arts|Crafts',
            'lang': 'hu',
            'phone': '+36 1 111 1111',
            'shippingAddress': {
                'city': 'Budapest',
                'country': 'HU',
                'deliveryMethod': 'DHL',
                'fullName': 'John Doe',
                'phone': '+36 1 1111 111',
                'region': 'HU-BU',
                'street': 'Műegyetem rkpt. 3.',
                'street2': '2. porta',
                'zipCode': '1111'
            },
            'step': 1,
            'zipCode': '1111'
        }
 
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('next').addEventListener('click', function() {
            bp('track', 'setUserProperties', setUserPropertiesProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#next").click(function() {
            bp('track', 'setUserProperties', setUserPropertiesProperties);
        });
 
|}
 
 
 
== Category Selection (categorySelection) ==
 
* Firing event: ''Button click'' on a category on a category selection page
* User intent: View a category
* Why do we need this: Users demonstrate interest in items belonging to a category by looking at the category
 
This event should be implemented where the user can select a category of events on a page, for example a brand, a common
property, a theme, a price range or any grouping of product along something that makes them belong to the category.
 
 
 
'''Category selection event properties'''
 
{| class="wikitable"
! key
! required
! type
! description
|-
! id
| YES
| text
| Unique ID of the category clicked on your site.
|-
! name
| YES
| text
| text
| The country in which the user lives. ISO 3166-1 alpha-2 codes are preferred.
| Full name of the category. (eg. 'shoes')
|-
! brand
| NO
| NO
| text
| Brand of the item in the category clicked.
|-
|-
! county
! category
| NO
| text
| text
| The county in which the user lives
| | The category (eg. 'winter shoes' or 'summer shoes') or subcategory branch (eg. 'clothes|winter|shoes' or 'clothes|summer|shoes', separate levels with '|') of the category that was clicked.
|-
! [[#Special_properties|contents]]
| NO
| NO
| array
| An array of JS objects for detailing items in the category. For more details see the table below.
|-
|-
! city
! contentType
| NO
| text
| text
| The city in which the user lives
| Usually this value should be "Product".
|-
! customerValue
| NO
| float
| The value of a user performing this event to the business.
|-
! list
| NO
| NO
| text
| The collection that the category clicked is in from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
|-
|-
! zipCode
! positioning
| NO
| text
| text
| The zip code of the user
| The category's position in the list or collection (e.g. 2) or the position of the creative (e.g. banner_slot_1)
|-
! step
| NO
| NO
| integer
| A number that represents the progress in the checkout process.
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
''' Category selection event implementation examples: '''
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For physical items </strong>
|-
|-
! gender
|  // sample category data
        var categorySelectionProperties = {
            'id': 'books_scifi',
            'name': 'Sci-Fi Books',
            'brand': undefined,
            'category': 'Books',
            'contents': undefined,
            'contentType': 'Page',
            'customerValue': 150.0,
            'list': 'SearchPage',
            'positioning': '42',
            'step': undefined
        }
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('select_category').addEventListener('click', function() {
            bp('track', 'categorySelection', categorySelectionProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#select_category").click(function() {
            bp('track', 'categorySelection', categorySelectionProperties);
        });
 
|}
 
 
 
== Click Product (clickProduct) ==
 
* Firing event: ''Button click'' on an item
* User intent: View an item
* Why do we need this: Users demonstrate interest in your items by clicking them
 
This event should be fired each time when a user selects any of your items and then the item's page will be loaded. This could be for example on a product
selection page, a result on a search or filter page, an item on a promotion. The page type on which the button is on
should be specified in the 'list' property. In case of product bundles, you can use the 'contents' property to list each
item in the bundle, while the direct properties should refer to the bundle as a whole as an item.
 
 
 
 
'''Click product event properties'''
 
{| class="wikitable"
! key
! required
! type
! description
|-
! contentType
| YES
| text
| The type of the content of the page where the item was selected. Possible values (only these are accepted): Page/Product/Article/Promotion/Banner/Misc.
|-
! currency
| YES
| text (ISO 4217)
| Currency that the item is listed in for purchase. 3 digit ISO 4217 format is preferred (eg. HUF, EUR).
|-
! id
| YES
| text
| Unique ID of the item clicked on your site.
|-
! name
| YES
| text
| Full name of the item clicked.
|-
! quantity
| YES
| float
| The quantity of a product clicked measured in the unit provided (e.g. 2).
|-
! unit
| YES
| text
| The measurement unit of the item clicked. (e.g. pcs, kg).
|-
! unitPrice
| YES
| float
| Price of one unit (that you provided) of the item clicked (in the currency that you provided).
|-
! brand
| NO
| text
| text
| The gender of the user. Possible values: M - Male, F - Female
| Brand of the item clicked.
|-
! category
| NO
| NO
| text
| The category (eg. 'winter shoes' or 'summer shoes') or subcategory branch (eg. 'clothes|shoes|winter' or 'clothes|shoes|summer', separate levels with '|') of the item clicked.
|-
|-
! age
! [[#Special_properties|contents]]
| integer
| Age of user
| NO
| NO
| array
| An array of JS objects for detailing multiple items clicked. For more details see the table below.
|-
|-
! currency
! creative
| text (ISO 4217 format)
| The preferred currency of the user. 3 digit currency code required.
| NO
| NO
| text
| The name or description of the promotion for the item, for example a promotion picture filename or slogan of the promotion that selects the item.
|-
|-
! language
! customerValue
| text (ISO 639-1)
| The preferred language of the user. 2 digit country code is required.
| NO
| NO
| float
| The value of a user performing this event to the business.
|-
|-
! interests
! ean
| NO
| text
| text
| Lists the interests of the user (e.g., "Arts & Entertainment, Games, Sports")
| Contains the International Article Number (EAN) of the item if available.
|-
! list
| NO
| NO
| text
| The collection that the product clicked is in from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
|-
|-
! sessionId
! positioning
| NO
| text
| text
| Session Id
| The product's position in the list or collection (e.g. 2) or the position of the creative (e.g. banner_slot_1)
|-
! step
| NO
| integer
| A number that represents the progress in the checkout process. Usually at a click product event, this is 0.
|-
! variant
| NO
| NO
| text
| The variant of the product (e.g. 'black<nowiki>|</nowiki>XS') clicked.
|}
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>


====Item value type====
''' Click product event implementation examples: '''


The '''item_list''' is a compound value type that is comprised of '''item''' type Javascript objects in a standard Javascript array. Each element of the array have to conform to the following property list restrictions.
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For physical items in checkout process </strong>
|-
|  // sample product data for single product
        var clickProductProperties = {
            'contentType': 'Product',
            'currency': 'HUF',
            'id': 'item_42',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'quantity': 1.0,
            'unit': 'pcs',
            'unitPrice': 2500.0,
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': undefined,
            'creative': 'book_42',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'Checkout',
            'positioning': '1',
            'step': 2,
            'variant': 'hardcover'
        }


=====Table 4: The item value type properties=====
 
        // sample product data for bundle offer
        var clickProductProperties = {
            'contentType': 'Product',
            'currency': 'HUF',
            'id': 'item_42pack',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'quantity': 1.0,
            'unit': 'pcs',
            'unitPrice': 15000.0,
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': [{
                'contentType': 'Product',
                'currency': 'HUF',
                'id': 'item_42',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 7500.0,
                'unit': 'pcs',
                'unitPrice': 2500.0,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                },
                {
                'contentType': 'Product',
                'currency': 'USD',
                'id': 'item_42en',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 25935,
                'unit': 'pcs',
                'unitPrice': 8645,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                }],
            'creative': 'bundle_offer_01',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'Checkout',
            'positioning': '1',
            'step': 2,
            'variant': 'hardcover'
        }
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('book_42').addEventListener('click', function() {
            bp('track', 'clickProduct', clickProductProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#book_42").click(function() {
            bp('track', 'clickProduct', clickProductProperties);
        });
 
|}
 
 
== Click Product Detail (clickProductDetail) ==
 
* Firing event: ''Button click'' requesting extended details about an item
* User intent: View extended information about an item
* Why do we need this: Users demonstrate high interest in your items by looking up details about them
 
This event should fire on a button click that can be either a webpage or an asynchronous request for more details about
an item. It should be implemented at any button that results in more details being shown about an item.
 
 
 
'''Click product detail event properties'''


{| class="wikitable"
{| class="wikitable"
! Property name
! key
! Property type
! required
! Description
! type
! Required
! description
|-
! contentType
| YES
| text
| The type of the content of the page where the item was selected. Possible values (only these are accepted): Page/Product/Article/Promotion/Banner/Misc.
|-
! currency
| YES
| text (ISO 4217)
| Currency that the item is listed in for purchase. 3 digit ISO 4217 format is preferred (eg. HUF, EUR).
|-
|-
! id
! id
| YES
| text
| text
| SKU of product/id of article/the promotion ID/etc.
| Unique ID of the item clicked on your site.
|-
! name
| YES
| YES
| text
| Full name of the item clicked.
|-
|-
! contentType
! unit
| YES
| text
| text
| Possible values: Product/Article/Promotion/Banner/Misc
| The measurement unit of the item clicked. (e.g. pcs, kg).
|-
! unitPrice
| YES
| YES
| float
| Price of one unit (that you provided) of the item clicked (in the currency that you provided).
|-
|-
! name
! variant
| NO
| text
| text
| Full Name of product/article/promotion etc (e.g. Android T-Shirt or e.g. Summer Sale)
| The variant of the product (e.g. 'black<nowiki>|</nowiki>XS') clicked.
| YES
|-
|-
! brand
! brand
| NO
| text
| text
| Brand part of product/brand described in article
| Brand of the item clicked.
| YES
|-
|-
! category
! category
| NO
| text
| text
| Array of categories of product/article/etc. If category is in tree structure, they must be separated with pipe (e.g. "clothes|coat|winter" or "clothes|coat|autumn").
| The category (eg. 'winter shoes' or 'summer shoes') or subcategory branch (eg. 'clothes|shoes|winter' or 'clothes|shoes|summer', separate levels with '|') of the item clicked.
| YES
|-
! [[#Special_properties|contents]]
| NO
| array
| An array of JS objects for detailing multiple items clicked. For more details see the table below.
|-
|-
! unit
! creative
| NO
| text
| text
| The measurement unit of the item.
| The name or description of the promotion for the item, for example a promotion picture filename or slogan of the promotion that selects the item.
| YES
|-
|-
! unitPrice
! customerValue
| NO
| float
| float
| Price of product (the price of one measurement unit of the item).
| The value of a user performing this event to the business.
| YES
|-
! ean
| NO
| text
| Contains the International Article Number (EAN) of the item if available.
|-
! list
| NO
| text
| The collection that the product clicked is in from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
|-
! positioning
| NO
| text
| The product's position in the list or collection (e.g. 2) or the position of the creative (e.g. banner_slot_1)
|-
! step
| NO
| integer
| A number that represents the progress in the checkout process. Usually at a click product event, this is 0.
|-
|-
! totalItemPrice
! quantity
| NO
| float
| float
| The total price of the item.
| The quantity of a product clicked measured in the unit provided (e.g. 2).
|-
! variant
| NO
| text
| The variant of the product (e.g. 'black<nowiki>|</nowiki>XS') clicked.
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
 
 
''' Click product detail event implementation examples: '''
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For physical items in checkout process</strong>
|-
|  // sample product data for single product
        var clickProductDetailProperties = {
            'contentType': 'Product',
            'currency': 'HUF',
            'id': 'item_42',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'unit': 'pcs',
            'unitPrice': 2500.0,
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': undefined,
            'creative': 'book_42',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'Checkout',
            'positioning': '1',
            'step': 2,
            'quantity': 1.0,
            'variant': 'hardcover'
        }
 
 
        // sample product data for bundle offer
        var clickProductDetailProperties = {
            'contentType': 'Product',
            'currency': 'HUF',
            'id': 'item_42pack',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'unit': 'pcs',
            'unitPrice': 15000.0,
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': [{
                'contentType': 'Product',
                'currency': 'HUF',
                'id': 'item_42',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 7500.0,
                'unit': 'pcs',
                'unitPrice': 2500.0,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                },
                {
                'contentType': 'Product',
                'currency': 'USD',
                'id': 'item_42en',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 25935,
                'unit': 'pcs',
                'unitPrice': 8645,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                }],
            'creative': 'bundle_offer_01',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'Checkout',
            'positioning': '1',
            'step': 2,
            'quantity': 1.0,
            'variant': 'hardcover'
        }
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('more_details').addEventListener('click', function() {
            bp('track', 'clickProductDetail', clickProductDetailProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#more_details").click(function() {
            bp('track', 'clickProductDetail', clickProductDetailProperties);
        });
 
|}
 
 
== Customize Product (customizeProduct) ==
 
* Firing event: ''Button click'' changing particular characteristics of an item
* User intent: Change characteristics of an item
* Why do we need this: Users demonstrate interest in your items by customizing them
 
This event should fire on a button click that can be either a webpage or an asynchronous request for a different variant
of an item, for example color, size etc. It should be implemented at any button that results in a different variant
being shown.
 
 
 
'''Customize product event properties'''
 
{| class="wikitable"
! key
! required
! type
! description
|-
! contentType
| YES
| YES
| text
| The type of the content of the page where the item was selected. Possible values (only these are accepted): Page/Product/Article/Promotion/Banner/Misc.
|-
|-
! currency
! currency
| text (ISO 4217 format)
| Currency of product
| YES
| YES
| text (ISO 4217)
| Currency that the item is listed in for purchase. 3 digit ISO 4217 format is preferred (eg. HUF, EUR).
|-
! id
| YES
| text
| Unique ID of the item clicked on your site.
|-
! name
| YES
| text
| Full name of the item clicked.
|-
! unit
| YES
| text
| The measurement unit of the item clicked. (e.g. pcs, kg).
|-
|-
! quantity
! unitPrice
| integer
| The quantity of a product (e.g. 2)
| YES
| YES
| float
| Price of one unit (that you provided) of the item clicked (in the currency that you provided).
|-
|-
! variant
! variant
| YES
| text
| text
| The variant of the product (e.g. Black)
| The variant of the product (e.g. 'black<nowiki>|</nowiki>XS') clicked.
|-
! brand
| NO
| NO
| text
| Brand of the item clicked.
|-
|-
! description
! category
| NO
| text
| text
| The detailed description of the item.
| The category (eg. 'winter shoes' or 'summer shoes') or subcategory branch (eg. 'clothes|shoes|winter' or 'clothes|shoes|summer', separate levels with '|') of the item clicked.
|-
! [[#Special_properties|contents]]
| NO
| NO
| array
| An array of JS objects for detailing multiple items clicked. For more details see the table below.
|-
|-
! imageUrl
! creative
| NO
| text
| text
| A URL pointing to an image that shows the item.
| The name or description of the promotion for the item, for example a promotion picture filename or slogan of the promotion that selects the item.
|-
! customerValue
| NO
| NO
| float
| The value of a user performing this event to the business.
|-
|-
! ean
! ean
| NO
| text
| Contains the International Article Number (EAN) of the item if available.
|-
! list
| NO
| text
| The collection that the product clicked is in from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
|-
! positioning
| NO
| text
| text
| Contains the International Article Number (EAN) when applicable.
| The product's position in the list or collection (e.g. 2) or the position of the creative (e.g. banner_slot_1)
|-
! quantity
| NO
| float
| The quantity of a product clicked measured in the unit provided (e.g. 2).
|-
! step
| NO
| NO
| integer
| A number that represents the progress in the checkout process. Usually at a click product event, this is 0.
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
''' Customize product event implementation examples: '''
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For physical items in checkout process </strong>
|-
|  // sample product data for single product
        var customizeProductProperties = {
            'contentType': 'Product',
            'currency': 'HUF',
            'id': 'item_42',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'unit': 'pcs',
            'unitPrice': 2500.0,
            'variant': 'hardcover',
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': undefined,
            'creative': 'book_42',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'Checkout',
            'positioning': '1',
            'step': 2,
            'quantity': 1.0,
        }
        // sample product data for bundle offer
        var customizeProductProperties = {
            'contentType': 'Product',
            'currency': 'HUF',
            'id': 'item_42pack',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'unit': 'pcs',
            'unitPrice': 15000.0,
            'variant': 'hardcover',
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': [{
                'contentType': 'Product',
                'currency': 'HUF',
                'id': 'item_42',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 7500.0,
                'unit': 'pcs',
                'unitPrice': 2500.0,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                },
                {
                'contentType': 'Product',
                'currency': 'USD',
                'id': 'item_42en',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 25935,
                'unit': 'pcs',
                'unitPrice': 8645,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                }],
            'creative': 'bundle_offer_01',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'Checkout',
            'positioning': '1',
            'step': 2,
            'quantity': 1.0,
        }
        // Use one of these to add the event listener to the button click (use only one):
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('customize').addEventListener('click', function() {
            bp('track', 'customizeProduct', customizeProductProperties);
        });
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#customize").click(function() {
            bp('track', 'customizeProduct', customizeProductProperties);
        });
|}
|}


====Address value type====


The '''shippingAddress''' property is a compound value type with a specific set of properties. This is essentially a Javascript object with specified keys below. No keys are mandatory in this value type.


=====Table 5: The address value type properties=====
== Purchase (purchase) ==
 
* Firing event: ''Page load'' after the payment process
* User intent: Verify the completion of the transaction
* Why do we need this: Users usually are put off by adverts of an item they already purchased, but can be receptive to related products
 
This event should be fired on the page load where the user is notified about the completion of their transaction that is finished by successful payment. If the user chooses cash as the method of payment, usually this event should be fired when the ‘thank you’ page is loaded, if they choose online payment it should be fired when the ‘successful payment’ page is loaded. If the payment wasn't successful, then still this event still needs to be fired, except the 'step' property should set to a '-1' value.
 
 


'''Purchase event properties'''
{| class="wikitable"
{| class="wikitable"
! Property name
! key
! Property type
! required
! Description
! type
! Required
! description
|-
! [[#Special_properties|contents]]
| YES
| array
| An array of JS objects for detailing the actual items contained in the cart, meaning the shipping and coupons should be excluded. For the detailed format see the table below.
|-
! currency
| YES
| text (ISO 4217)
| The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
|-
! revenue
| YES
| float
| The total revenue associated with the transaction in the given currency. This should include all costs the customer pays like shipping or tax.
|-
! step
| YES
| integer
| In most cases, since this is after the last checkout step, this should be the maximum value that you use. If the transaction is unsuccessful, this should be -1.
|-
|-
! deliveryMethod
! contentType
| NO
| text
| text
| The delivery method, if applicable.
| Usually this value should be "Product".
| No
|-
|-
! country
! coupon
| NO
| text
| text
| The recipient's country code in ISO-3166-1 alpha-2 format.
| The coupon code that is being used.
| No
|-
|-
! city
! creative
| NO
| text
| text
| The complete name of the city of the recipient address.
| The name or description of the promotion for the cart, for example a promotion picture filename or slogan of the promotion that starts the checkout automatically.
| No
|-
! customerValue
| NO
| float
| A metric that you define that measures the value of the action performed to your business.
|-
|-
! region
! list
| NO
| text
| text
| The region code of the recipient address in ISO-3166-2 format
| In most cases this should be 'Checkout'.
| No
|-
|-
! zip
! opt
| NO
| text
| text
| The zip code of the recipient address.
| Additional information about the purchase.
| No
|-
|-
! street
! orderNumber
| NO
| text
| text
| The shipping street address with house number and other details.
| The unique ID of the purchase.
| No
|-
|-
! street2
! positioning
| NO
| text
| text
| The address, continued.
| The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
| No
|-
! shipping
| NO
| float
| The price of shipping associated with the purchase in the given currency.
|-
|-
! fullName
! shippingAddress
| text
| NO
| The full civil or official name of the recipient.
| object
| No
| The shipping address given in the format detailed below.
|-
|-
! phone
! tax
| text
| NO
| The phone number of the recipient.
| float
| No
| The tax associated with the purchase in the given currency.
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
 
 
''' Purchase event implementation example: '''
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> Successful purchase example for physical items </strong>
|-
|-
|      var purchaseProperties = {
            'contents': [{
                'contentType': 'Product',
                'currency': 'HUF',
                'id': 'item_42',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 7500.0,
                'unit': 'pcs',
                'unitPrice': 2500.0,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                },
                {
                'contentType': 'Product',
                'currency': 'USD',
                'id': 'item_42en',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 25935,
                'unit': 'pcs',
                'unitPrice': 8645,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                }],
            'currency': 'HUF',
            'revenue': 17500.0,
            'step': 7,
            'contentType': 'Product',
            'coupon': '43763436874',
            'creative': 'preselected_cart_01',
            'customerValue': 150.0,
            'list': 'Checkout',
            'opt': 'To postal office, no street address',
            'orderNumber': '852',
            'positioning': '1',
            'shipping': 2500.0,
            'shippingAddress': {
                'city': 'Budapest',
                'country': 'HU',
                'deliveryMethod': 'DHL',
                'fullName': 'John Doe',
                'phone': '+36 1 1111 111',
                'region': 'HU-BU',
                'street': 'Műegyetem rkpt. 3.',
                'street2': '2. porta',
                'zipCode': '1111'
            },
            'tax': 0.0
        }
        bp('track', 'purchase', purchaseProperties);
|}
|}


===Events related to content browsing===


A portion of all events are related to browsing through a Your webshop’s content: viewing pages, promotions, clicking on products and product details, customization of products, etc. These are specifically: '''contentView, clickProduct, clickProductDetail, customizeProduct, clickPromo'''.
All properties may be used in each event, where You find YES in te corresnponding table the property usage is mandatory. Only 3 properties are overall mandatory, these are: '''id, contentType and name'''. Please note that for the contentType property, you are only able to choose from a number of predefined values: Page, Product, Article, Promotion, Banner and Misc. The following table shows the property requirements for these.


====Table 6: Properties of events related to content browsing====
== Remove from Cart (removeFromCart) ==
 
* Firing event: ''Button click'' that results in a product to be removed from the items selected for purchase
* User intent: Deselect product for purchase
* Why do we need this: Users demonstrate interest in carted products, and this can be refined if we know when products are deselected
 
The remove from cart event is very similar to the add to cart event, and is mainly required to refine our data on
selected items by informing us when products are taken out from the cart or deselected from purchase. It can also mean
that a purchase process that first made a user select an item is simply cancelled.
 


'''Remove from cart event properties'''
{| class="wikitable"
{| class="wikitable"
!
! key
!colspan = "5"| Event
! required
|-
! type
! Property
! description
! contentView
! clickProduct
! clickProductDetail
! customizeProduct
! clickPromo
|-
|-
! contentType
! contentType
| YES
| YES
| text
| Usually, this value should be "Product".
|-
! currency
| YES
| YES
| text (ISO 4217)
| The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
|-
! id
| YES
| YES
| text
| An unique ID that you have for the item, this can be your ID for the product, an SKU or a promotion ID.
|-
! name
| YES
| YES
| text
| The full name that you have for the added item, for example a product name (eg. Red Bull 24pcs carton).
|-
! quantity
| YES
| YES
| float
| The quantity of the item removed from the cart.
|-
|-
! id
! totalItemPrice
| YES
| YES
| float
| The total price of the removed items in the given currency.
|-
! unit
| YES
| YES
| text
| The unit that your item is measured in (eg. pieces, kg, hours).
|-
! unitPrice
| YES
| YES
| float
| The price of one measurement of your item in the given currency.
|-
! brand
| NO
| text
| The brand of the item.
|-
! category
| NO
| text
| | The subcategory branch (preferred, eg. 'clothes|shoes|winter', separate levels with '|') or single category (eg. 'winter shoes' or 'summer shoes') of the item.
|-
! [[#Special_properties|contents]]
| NO
| array
| An array of JS objects for detailing multiple items of the item. For more details see the table below.
|-
! coupon
| NO
| text
| The coupon code that was used when the item was removed from cart.
|-
! creative
| NO
| text
| Seldom used, for example a promotion that changes a product in your cart to a better, more expensive or more recent one.
|-
! customerValue
| NO
| float
| A metric that you define that measures the value of the action performed to your business.
|-
! ean
| NO
| text
| Contains the International Article Number (EAN) of the item if available.
|-
! list
| NO
| text
| The function of the loaded page from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
|-
! positioning
| NO
| text
| The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
|-
! step
| NO
| integer
| If the page is displayed along the checkout process, the checkout step number that the page is displayed in, numbered from 0 as the checkout initiation.
|-
! variant
| NO
| text
| The variant of the offer from the list of possible identical items (eg. the color of a phone or the time and venue of a concert or movie)
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
''' Remove from cart event implementation examples: '''
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For physical items in basket page </strong>
|-
|  // sample product data for single items
        var removeFromCartProperties = {
            'contentType': 'Product',
            'currency': 'HUF',
            'id': 'item_42',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'quantity': 10.0,
            'totalItemPrice': 49900.0,
            'unit': 'pcs.',
            'unitPrice': 4990.0,
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': undefined,
            'coupon': '43763436874',
            'creative': 'upsell_promo_42',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'BasketPage',
            'positioning': '3',
            'step': undefined,
            'variant': 'hardcover'
        }
        // sample product data for bundled items
        var removeFromCartProperties = {
            'contentType': 'Product',
            'currency': 'HUF',
            'id': 'item_42pack',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'quantity': 10.0,
            'totalItemPrice': 150000.0,
            'unit': 'pcs.',
            'unitPrice': 15000.0,
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': [{
                'contentType': 'Product',
                'currency': 'HUF',
                'id': 'item_42',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 7500.0,
                'unit': 'pcs',
                'unitPrice': 2500.0,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                },
                {
                'contentType': 'Product',
                'currency': 'USD',
                'id': 'item_42en',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 25935,
                'unit': 'pcs',
                'unitPrice': 8645,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                }],
            'coupon': '43763436874',
            'creative': 'upsell_promo_42',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'BasketPage',
            'positioning': '3',
            'step': undefined,
            'variant': 'hardcover'
        }
        // Use one of these to add the event listener to the button click (use only one):
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('remove_button').addEventListener('click', function() {
            bp('track', 'removeFromCart', removeFromCartProperties);
        });
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#remove_button").click(function() {
            bp('track', 'removeFromCart', removeFromCartProperties);
        });
|}
== Add Payment Info (addPaymentInfo) ==
* Firing event: ''Button click'' at a point in the checkout process where the payment method is already set
* User intent: Select payment method
* Why do we need this: It helps to identify user financial habits
This event should be fired when the payment method of a user is already entered. This event should be fired both if
the payment info is explicitly requested and provided, but also if it is only implied for example when only one option
is available.
'''Add payment info event properties'''
{| class="wikitable"
! key
! required
! type
! description
|-
! [[#Special_properties|contents]]
| YES
| YES
| array
| An array of JS objects for detailing the actual items contained in the cart, meaning the shipping and coupons should be excluded. For the detailed format see the table below.
|-
! paymentMethod
| YES
| YES
| text
| The method of payment that the user chooses, for example Barion, cash etc.
|-
|-
! name
! step
| YES
| YES
| integer
| It representing the current number of step in the checkout process.
|-
! contentType
| NO
| text
| Usually this value should be "Product".
|-
! coupon
| NO
| text
| The coupon code that is being used.
|-
! creative
| NO
| text
| The name or description of the promotion for the cart, for example a promotion picture filename or slogan of the promotion that starts the checkout automatically.
|-
! currency
| NO
| text (ISO 4217)
| The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
|-
! customerValue
| NO
| float
| A metric that you define that measures the value of the action performed to your business.
|-
! list
| NO
| text
| In most cases this should be 'Checkout'.
|-
! opt
| NO
| text
| Additional information about the purchase.
|-
! orderNumber
| NO
| text
| The unique ID of the purchase.
|-
! positioning
| NO
| text
| The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
|-
! revenue
| NO
| float
| The total revenue associated with the transaction in the given currency. This should include all costs the customer pays like shipping or tax.
|-
! shipping
| NO
| float
| The price of shipping associated with the purchase in the given currency.
|-
! shippingAddress
| NO
| object
| The shipping address given in the format detailed below.
|-
! tax
| NO
| float
| The tax associated with the purchase in the given currency.
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
''' Add payment info event implementation examples: '''
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For physical items </strong>
|-
|  // sample product data
        var addPaymentInfoProperties = {
            'contents': [{
                'contentType': 'Product',
                'currency': 'HUF',
                'id': 'item_42',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 7500.0,
                'unit': 'pcs',
                'unitPrice': 2500.0,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                },
                {
                'contentType': 'Product',
                'currency': 'USD',
                'id': 'item_42en',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 25935,
                'unit': 'pcs',
                'unitPrice': 8645,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                }],
            'paymentMethod': 'Barion',
            'step': 0,
            'contentType': 'Product',
            'coupon': '43763436874',
            'creative': 'preselected_cart_01',
            'currency': 'HUF',
            'customerValue': 150.0,
            'list': 'Checkout',
            'opt': 'To postal office, no street address',
            'orderNumber': '852',
            'positioning': '1',
            'revenue': 17500.0,
            'shipping': 2500.0,
            'shippingAddress': {
                'city': 'Budapest',
                'country': 'HU',
                'deliveryMethod': 'DHL',
                'fullName': 'John Doe',
                'phone': '+36 1 1111 111',
                'region': 'HU-BU',
                'street': 'Műegyetem rkpt. 3.',
                'street2': '2. porta',
                'zipCode': '1111'
            },
            'tax': 0.0
        }
        // Use one of these to add the event listener to the button click (use only one):
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('checkout_next').addEventListener('click', function() {
            bp('track', 'addPaymentInfo', addPaymentInfoProperties);
        });
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#checkout_next").click(function() {
            bp('track', 'addPaymentInfo', addPaymentInfoProperties);
        });
|}
== Click Promo (clickPromo) ==
* Firing event: ''Button click'' on a promotion box only on your site.
* User intent: View a promotion
* Why do we need this: Users demonstrate interest in your promotion offers by clicking them
This event should be fired when one of your users selects a promotion on your site. Promotions can be usually placed on home pages,
product places, in the checkout process and many other places. The promotion can be about a product, offer, brand or any
other single offer or grouping of offers. This event should be implemented only on promotions that you serve on your page natively,
as opposed to those served dynamically by external third party services such as Google Ads.
'''Click promo event properties'''
{| class="wikitable"
! key
! required
! type
! description
|-
! contentType
| YES
| YES
| text
| The type of the content of the page where the promotion was selected. Possible values (only these are accepted): Page/Product/Article/Promotion/Banner/Misc.
|-
! creative
| YES
| YES
| text
| The name or description of the promotion, for example a promotion picture filename or slogan of the promotion.
|-
! id
| YES
| YES
| text
| Unique ID of the promotion clicked on your site.
|-
! name
| YES
| YES
| text
| Full name of the promotion.
|-
! brand
| NO
| text
| Brand of the item in the promotion clicked.
|-
! category
| NO
| text
| | The category (eg. 'winter shoes' or 'summer shoes') or subcategory branch (eg. 'clothes|shoes|winter' or 'clothes|shoes|summer', separate levels with '|') of the item in the promotion clicked.
|-
! [[#Special_properties|contents]]
| NO
| array
| An array of JS objects for detailing multiple items promoted. For more details see the table below.
|-
! currency
| NO
| text (ISO 4217)
| Currency that the promoted offer is listed in. 3 digit ISO 4217 format is preferred (eg. HUF, EUR).
|-
! customerValue
| NO
| float
| The value of a user performing this event to the business.
|-
! ean
| NO
| text
| Contains the International Article Number (EAN) of the item if available.
|-
! list
| NO
| text
| The collection that the promotion clicked is in from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
|-
! positioning
| NO
| text
| The promotion's position in the list or collection (e.g. 2) or the position of the creative (e.g. banner_slot_1)
|-
! quantity
| NO
| float
| The quantity that the item is promoted in, measured in the unit provided (e.g. 2).
|-
! step
| NO
| integer
| A number that represents the progress in the checkout process. Usually at a click product event, this is 0.
|-
! unit
| NO
| text
| The measurement unit of the item promoted (e.g. pcs, kg).
|-
|-
! unitPrice
! unitPrice
| YES*
| NO
| float
| Price of one unit (that you provided) of the item promoted (in the currency that you provided).
|-
! variant
| NO
| text
| The variant of the product (e.g. 'black|XS') promoted.
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
 
 
''' Click promo event implementation examples: '''
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> In checkout process </strong>
|-
|  // sample product data for single product
        var clickPromoProperties = {
            'contentType': 'Product',
            'creative': 'book_42',
            'id': 'item_42',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': undefined,
            'currency': 'HUF',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'Checkout',
            'positioning': '1',
            'quantity': 1.0,
            'step': 2,
            'unit': 'pcs',
            'unitPrice': 2500.0,
            'variant': 'hardcover'
        }
 
 
        // sample product data for bundle offer
        var clickPromoProperties = {
            'contentType': 'Product',
            'creative': 'bundle_offer_01',
            'id': 'item_42pack',
            'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': [{
                'contentType': 'Product',
                'currency': 'HUF',
                'id': 'item_42',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 7500.0,
                'unit': 'pcs',
                'unitPrice': 2500.0,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                },
                {
                'contentType': 'Product',
                'currency': 'USD',
                'id': 'item_42en',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 25935,
                'unit': 'pcs',
                'unitPrice': 8645,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                }],
            'currency': 'HUF',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'list': 'Checkout',
            'positioning': '1',
            'quantity': 1.0,
            'step': 2,
            'unit': 'pcs',
            'unitPrice': 15000.0,
            'variant': 'hardcover'
        }
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('book_42_promo').addEventListener('click', function() {
            bp('track', 'clickPromo', clickPromoProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#book_42_promo").click(function() {
            bp('track', 'clickPromo', clickPromoProperties);
        });
 
|}
 
 
 
== Sign Up (signUp) ==
 
* Firing event: ''Button click'' that completes the registration or login process
* User intent: Register for or login to a user account or a newsletter subscription
* Why do we need this: Users demonstrate interest in your market area by signing up for an account
 
This event should be usually sent along the set user properties event in registration process, since this event only captures the actual signup,
not the user itself. This event should both be fired if a user registers for an account or subscription for the first
time and when they login afterwards. Unsuccessful login or signup events should cause error events to be sent. If
possible, it is better if only successful attempts send a sign up event, but it is more important for all signing ups to
send an event than for each signup to be only sent once.
 
 
 
'''Add to cart event properties'''
{| class="wikitable"
! key
! required
! type
! description
|-
! contentType
| YES
| YES
| text
| If the user signs up for a product, then it should be 'Product' else this can be 'Page' if it is a general registration or login.
|-
! id
| YES
| YES
| text
| This should be your unique ID for the form used to register or login.
|-
! name
| YES
| YES
|  
| text
| The name of the for used for the signing up, for example 'Register' or 'Sign In'.
|-
! brand
| NO
| text
| The brand of the product the user signs up for.
|-
! category
| NO
| text
| | The subcategory branch (preferred, eg. 'clothes|shoes|winter', separate levels with '|') or single category (eg. 'winter shoes' or 'summer shoes') of the item.
|-
! [[#Special_properties|contents]]
| NO
| array
| An array of JS objects for detailing multiple items of the item. For more details see the table below.
|-
! currency
| NO
| text (ISO 4217)
| The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
|-
! customerValue
| NO
| float
| A metric that you define that measures the value of the action performed to your business.
|-
! ean
| NO
| text
| Contains the International Article Number (EAN) of the offer if available.
|-
|-
! unit
! unit
| YES*
| NO
| text
| The unit that your subscribed item is measured in (eg. pieces, kg, hours).
|-
! unitPrice
| NO
| float
| The price of one measurement of your item in the given currency.
|-
! variant
| NO
| text
| THehvariant of the offer from the list of possible identical items (eg. the color of a phone or the time and venue of a concert or movie)
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
 
 
''' Sign up event implementation examples: '''
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> Newsletter for a given item</strong>
|-
|  // sample subscription data
        var signUpProperties = {
            'contentType': 'Product',
            'id': 'item_42',
            'name': "Hitchhikers' Guide to the Galaxy, newsletter",
            'brand': 'Gollancz',
            'category': 'books|hardcover|scifi, books|hardcover|comedy',
            'contents': undefined,
            'currency': 'HUF',
            'customerValue': 150.0,
            'ean': '9780575115347',
            'unit': 'pcs.',
            'unitPrice': 4990.0,
            'variant': 'hardcover'
        }
 
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('signup_button').addEventListener('click', function() {
            bp('track', 'signUp', signUpProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#signup_button").click(function() {
            bp('track', 'signUp', signUpProperties);
        });
 
|}
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> Registration </strong>
|-
|  // sample subscription data
        var signUpProperties = {
            'contentType': 'Page',
            'id': 'registration_form_1',
            'name': 'Registration'
        }
 
 
        // Use one of these to add the event listener to the button click (use only one):
 
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('signup_button').addEventListener('click', function() {
            bp('track', 'signUp', signUpProperties);
        });
 
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#signup_button").click(function() {
            bp('track', 'signUp', signUpProperties);
        });
 
|}
 
 
 
== Search (search) ==
 
* Firing event: ''Button click'' that starts a search on a page
* User intent: Search for an offer on your page
* Why do we need this: Users demonstrate interest in an offer by searching for it
 
This event is quite straightforward, every time a search button is clicked, this should send. If the search has no
search button, but instead gives results on the change of the search box, then this event can be sent if the user clicks
on a result. In this case, searches are sent asynchronously for partial search terms, which should not in themselves
send an event. If you have a product selection page where items can be filtered, then the same can apply, the search
string in this case can be the query that the settings make that can be read in your browser address bar in HTTP
properties (eg. 'goats' in this: 'https://www.google.com/search?ei=A3rRXNHmJY-nrgSJs5HgDQ&q=goats').
 
 
 
'''Search event properties'''
{| class="wikitable"
! key
! required
! type
! description
|-
! searchString
| YES
| YES
| text
| The search terms entered by the user or the HTTP property that contains the search terms.
|-
! [[#Special_properties|contents]]
| NO
| array
| An array of JS objects containing the top ten results of your search.
|-
! contentType
| NO
| text
| Usually this should be 'Product'.
|-
! currency
| NO
| text (ISO 4217)
| If you have a filter that selects products by price, and the search string doesn't contain this, then you should provide it here.
|-
! customerValue
| NO
| float
| A metric that you define that measures the value of the action performed to your business.
|-
! id
| NO
| float
| The id of the search facility that the search is made in, for example of a search box or a filter array.
|-
! name
| NO
| text
| The name of the search facility that the search is made in, for example of a search box or a filter array.
|-
! totalResults
| NO
| integer
| The number of the search or filter results.
|}
<span style="font-size:80%; line-height: 1.31em;">(*It's possible to add [[#Special_properties|custom property]])</span>
''' Search event implementation examples: '''
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> General example</strong>
|-
|  // sample search result data
        var searchProperties = {
            'searchString': 'big GOATS',
            'contents': [{
                'contentType': 'Product',
                'currency': 'HUF',
                'id': 'item_42',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 7500.0,
                'unit': 'pcs',
                'unitPrice': 2500.0,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                },
                {
                'contentType': 'Product',
                'currency': 'USD',
                'id': 'item_42en',
                'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                'quantity': 3.0,
                'totalItemPrice': 25935,
                'unit': 'pcs',
                'unitPrice': 8645,
                'brand': 'Gollancz',
                'category': 'books|hardcover|scifi, books|hardcover|comedy',
                'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                'ean': '9780575115347',
                'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                'variant': 'hardcover'
                }],
            'contentType': 'Product',
            'currency': undefined,
            'customerValue': 150.0,
            'id': 'search_01',
            'name': 'Book Search',
            'totalResults': 2
        }
        // Use one of these to add the event listener to the button click (use only one):
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('search_button').addEventListener('click', function() {
            bp('track', 'search', searchProperties);
        });
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#search_button").click(function() {
            bp('track', 'search', searchProperties);
        });
|}
== Error (error) ==
* Firing event: Any event that results in erroneous operation
* User intent: Something else
* Why do we need this: We can get more information about event failures
This event should be sent each time the page can't complete the requested operation, for examnple on 40x or 50x pages,
failed form submissions et cetera.
'''Error event properties'''
{| class="wikitable"
! key
! required
! type
! description
|-
! description
| YES
| YES
| text
| The description of the error, or preferably the full error message.
|-
! code
| NO
| int
| The error code.
|}
''' Error event implementation examples: '''
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For 404 error </strong>
|-
|  // on a static 404 page
        var errorProperties = {
            'description': 'I find your lack of navigation disturbing.',
            'code': 404
        }
        bp('track', 'error', errorProperties);
|}
== Custom Event (customEvent) ==
* Firing event: Any action that can't be described with our events
* User intent: Something different
* Why do we need this: We can get more information
This event is for describing any event that can't be otherwise described with our standard events.
'''Error event properties'''
{| class="wikitable"
! key
! required
! type
! description
|-
! eventAction
| NO
| text
| The action that the user takes, eg. click.
|-
! eventCategory
| NO
| text
| The category that the event falls in, you can define it for yourself, eg. 'user_settings'.
|-
! eventLabel
| NO
| text
| The label associated with the event, eg. 'language_selection'.
|-
! eventProperty
| NO
| text
| The property associated with the event, eg. 'unit_format'.
|-
! eventValue
| NO
| text
| The value of the property associated with the event, eg. 'metric'.
|}
''' Custom event implementation examples: '''
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> For measuring unit selection </strong>
|-
|      // for measuring unit selection
        var customEventProperties = {
            'eventAction': 'click',
            'eventCategory': 'user_settings',
            'eventLabel': 'language_selection',
            'eventProperty': 'unit_format',
            'eventValue': 'metric'
        }
        // Use one of these to add the event listener to the button click (use only one):
        // vanilla JS (if you don't use jQuery, if in your console "$" is not defined on your site)
        document.getElementById('set_language').addEventListener('click', function() {
            bp('track', 'customEvent', customEventProperties);
        });
        // jQuery (if you use jQuery, if in your console "$" is defined on your site)
        $("#set_language").click(function() {
            bp('track', 'customEvent', customEventProperties);
        });
|}
= Special properties =
''' Contents value type - array of objects '''
{| class="wikitable"
! key
! required
! type
! description
|-
! contentType
| YES
| YES
|  
| text
| If this is a product page as per minimal requirements, this value should be "Product". Otherwise select a value that best fits from these: Page/Product/Article/Promotion/Banner/Misc.
|-
|-
! currency
! currency
| YES*
| YES
| YES
| text (ISO 4217)
| The currency that the product price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
|-
! id
| YES
| YES
| text
| An unique ID that you have for the offer, this can be your ID for the product, an SKU or a promotion ID.
|-
! name
| YES
| YES
|  
| text
| The full name that you have for the offer, for example a product name (eg. Red Bull 24pcs carton).
|-
|-
! quantity
! quantity
| YES*
| YES
| YES
|  
| float
|  
| The quantity of the product offered as initially given on the page.
|  
|-
! totalItemPrice
| YES
| float
| The total price of the added items in the given currency.
|-
|-
! variant
! unit
|
|
|
| YES
| YES
|  
| text
| The unit that your offer is measured in (eg. pieces, kg, m).
|-
|-
! creative
! unitPrice
|
|
|
|
| YES
| YES
| float
| The price of one measurement of your offer in the given currency.
|-
! brand
| NO
| text
| The brand of the offer.
|-
! category
| NO
| text
| | The subcategory branch (preferred, eg. 'clothes|shoes|winter', separate levels with '|') or single category (eg. 'winter shoes' or 'summer shoes') of the offer.
|-
|-
! contents
! description
|
| NO
|
| text
|  
| The detailed description of item.
|  
|  
|-
|-
! ean
! ean
|  
| NO
|  
| text
|  
| Contains the International Article Number (EAN) of the offer if available.
|  
|-
|  
! imageUrl
| NO
| text
| The URL of the image of the viewed item.
|-
! variant
| NO
| text
| The variant of the offer from the list of possible identical items (eg. the color of a phone or the time and venue of a concert or movie)
|}
 
 
''' Address value type - array of objects '''
 
{| class="wikitable"
! key
! required
! type
! description
|-
! city
| NO
| text
| The complete name of the city of the recipient address.
|-
! country
| NO
| text (ISO-3166-1 alpha-2)
| The recipient's country code in ISO-3166-1 alpha-2 format.
|-
! deliveryMethod
| NO
| text
| The delivery method, if applicable.
|-
! fullName
| NO
| text
| The full civil or official name of the recipient.
|-
! phone
| NO
| text
| The phone number of the recipient.
|-
! region
| NO
| text (ISO-3166-2)
| The region code of the recipient address in ISO-3166-2 format.
|-
! street
| NO
| text
| The shipping street address with house number and other details.
|-
|-
! brand
! street2
|  
| NO
|  
| text
|  
| The address, continued.
|  
|-
|  
! zipCode
| NO
| text
| The zip code of the recipient address.
|}
 
 
''' Custom Property '''
 
{| class="wikitable"
! name
! Value Type
! Description
|-
| _custom
| any type
| If our predefined events and/or object properties don't suit your needs, you can include your own, custom events and/or properties. Custom properties can be used with standard events. Custom properties must start with an underscore.
|}
 
''' Custom property implementation examples: '''
 
{| role="presentation" class="wikitable mw-collapsible mw-collapsed"
| <strong> In purchase event </strong>
|-
|      //_custome_event_test
        var purchaseProperties = {
                'contents': [{
                    'contentType': 'Product',
                    'currency': 'HUF',
                    'id': 'item_42',
                    'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                    'quantity': 3.0,
                    'totalItemPrice': 7500.0,
                    'unit': 'pcs',
                    'unitPrice': 2500.0,
                    'brand': 'Gollancz',
                    'category': 'books|hardcover|scifi, books|hardcover|comedy',
                    'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                    'ean': '9780575115347',
                    'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                    'variant': 'hardcover'
                    },
                    {
                    'contentType': 'Product',
                    'currency': 'USD',
                    'id': 'item_42en',
                    'name': "Hitchhikers' Guide to the Galaxy, hardcover, ISBN: 9780575115347",
                    'quantity': 3.0,
                    'totalItemPrice': 25935,
                    'unit': 'pcs',
                    'unitPrice': 8645,
                    'brand': 'Gollancz',
                    'category': 'books|hardcover|scifi, books|hardcover|comedy',
                    'description': 'The Hitchhikers Guide to the Galaxy is a comedy science fiction series created by Douglas Adams.',
                    'ean': '9780575115347',
                    'imageUrl': 'https://images-na.ssl-images-amazon.com/images/I/51MzUz8rQcL._SX305_BO1,204,203,200_.jpg',
                    'variant': 'hardcover'
                    }],
                'currency': 'HUF',
                'revenue': 17500.0,
                'step': 7,
                'contentType': 'Product',
                'coupon': '43763436874',
                'creative': 'preselected_cart_01',
                'customerValue': 150.0,
                'list': 'Checkout',
                'opt': 'To postal office, no street address',
                'orderNumber': '852',
                'positioning': '1',
                'shipping': 2500.0,
                'shippingAddress': {
                    'city': 'Budapest',
                    'country': 'HU',
                    'deliveryMethod': 'DHL',
                    'fullName': 'John Doe',
                    'phone': '+36 1 1111 111',
                    'region': 'HU-BU',
                    'street': 'Műegyetem rkpt. 3.',
                    'street2': '2. porta',
                    'zipCode': '1111'
                },
                'tax': 0.0,
                '_myCustomProperty' : 'This is my first custom property'
            }
 
            bp('track', 'purchase', purchaseProperties);
 
|}
 
= Implementation FAQ =
<b>When do I have to send an event?</b><br>
Every event description contains the trigger that may be a page load or a button click (Firing event at the event description).
 
 
 
<b>What should I do if an event is undefinable in my web shop?</b><br>
If event is not applicable to any user intent either explicitly or implicitly then you do not need to implement it.
 
 
<b>Should visitors to a product page who are coming from external ads be tracked with a clickPromo event? (for example those that are provided by third party services such as Google Ads)</b><br>
No, as the click event didn’t happen on your page, this event should not be tracked on your page.
 
 
<b>When do I have to send the setUserProperties event?</b><br>
Only when users first provide personal data about themselves or they modify them, you do not need to send this event at every sign in.
 
 
<b>What event should be sent when my user registers and signs up for a newsletter during the registration process and is afterwards automatically logged in when the registration process is completed?</b><br>
In that case, you should send a setUserProperties with the personal data, one signUp event for the registration, and another signUp event for the newsletter, and finally a third signUp event for the login.
 
 
<b>What should I send in the variant property?</b><br>
Before adding it to cart, you may specify the exact type of your product, such as size or color on the product page. You have to send the value that describes the variant, not the altered quality of the item. E.g. If you specify the size and color for a T-shirt, send ’Red|XXL’ instead of ’Size|Color’
 
 
<b>Most events have the list and contentType property, what are they?</b><br>
Both of them predefined values. contentType: Page/ Product/ Article/ Promotion/ Banner/ Misc, list: HomePage/ SearchPage/ ProductPage/ Recommendation/ ComparisonPage/ BasketPage/ Checkout/ Misc. ContentType describes the type of the visited page’s content. It is ‘product’ on product page/category selection pages. If it is an article then ‘Article’ or e.g. Black Friday promotion then ‘promotion’, general pages are ‘Page’ e.g. contact or about us pages.
The list describes the functionality of the page, product page (ProductPage), basket page (BasketPage) or a page in the checkout process (Checkout) etc.
 
 
<b>What is the step property?</b><br>
First of all, consider the start point of the checkout process in your case. Usually, personal data and a delivery address are given after this point but before the actual purchase. This start point will be your initiateCheckout event where the value of step is 1. And then, split your checkout process up to the purchase into different steps, and fill this property with the position of the page in the checkout sequence.
 
 
<b>What should I do if click on basket icon does not add item into basket in all case?</b><br>
In that case, you have to manage different cases in different ways. The addToCart event should only be sent in the case when an item is actually added to the cart, otherwise you should not send this event.
 
 
<b>I have empty cart button, how do I manage click on it by removeFromCart?</b><br>
Send a removeFromCart event about each item that is in the cart.
 
 
<b>What are name and ID properties in the signUp event?</b><br>
These properties do not describe the user, the name identifies user intent, e.g. ’registration’, ’login’, ’newsletter’. The ID identifies the form or the checkbox. If there is no ID, then the same value can be entered as ID as the name.
 
 
<b>Where can I find the Barion Pixel ID?</b><br>
In your Barion wallet in the shop details menu.
 
 
<b>If no results are returned to a search initiated by a customer, should a search event be sent?</b><br>
Yes, in the same way as if the search results were not empty.
 
 
<b>If quantity added to cart by the customer exceeds the acceptable quantity of items added to cart, which one should be sent in quantity property in addToCart event?</b><br>
The quantity that was finally added to the cart. If no items are added to cart then you do not need to send an addToCart event.
 
 
<b>When do I send a purchase event?</b><br>
When a purchase is completed and finished by successful payment. If the user chooses cash as the payment method, then the purchase event should be sent when the user hits the ’Thank you’ page. If the user chooses online payment, then the purchase event should be sent when the user hits a ’Successful payment’ page.
 
 
<b>What should I do if payment is unsuccessful?</b><br>
In that case you must send a purchase event when the user hits an ’Unsuccessful payment’ page, however set the step property to -1. This special step value indicates that the payment has failed.
 
 
<b>The item name on the product page is different from the same item in checkout process, what do I do?</b><br>
The only thing that’s important is that all items should be named consistently in all events, meaning that the same item should have the same name in all cases.
 
= Consent management requirements =
 
== General requirements ==
In order to use cookies on your website a cookie policy and data management policy compliant with prevailing regulation must be placed on your website to sufficiently inform your users. In accordance with applicable law depending on the type of cookie placed all cookies usage and data collection can only be facilitated with the user’s consent. Compliance with these laws is the sole responsibility of the merchant. In view of the above, we remind you that placing the Barion Pixel necessitates the addition of information pertaining to the Barion Pixel to the cookie policy of the merchant website. Furthermore, using the Barion Pixel for marketing purposes requires the user’s consent, so the merchant is required to use a consent management solution compliant with prevailing law, which both obtains user consent  and  forwards  it  towards  Barion  according  to  the  [[#Consent_.28grantConsent.2C_rejectConsent.29|documentation]]. The Barion recommended examples for supplementing the cookie policy and the data management policy and requirements for the consent management platform can be found in the following chapter. These are the minimal requirements that you must comply with. If you are not in compliance, you bear all responsibility for all related damages. Requirements are that users can easily update or revoke their marketing consent. Furthermore, the CMP banner should appear for users every 13 months at a minimum - 30 days are recommended - with previous settings to remind them about the option to alter their consent. Its purpose is to ensure a regular reminder for user about consent options.
<ul>
  <li>If you use a website software provider then use their provided consent management.</li>
  <li>If you develop your own site, we recommend https://www.oiljs.org/ for you.</li>
</ul>
 
== Recommended text for cookie banner ==
“We use Cookies and other technologies
We use them for website operation, statistics, personalization of content and ads, offers and to share the data collected in this way with our media, advertising and analytics partners. Our [https://docs.barion.com/Barion_Pixel#Dataprocessing_Partners partners] can combine these with other data. By clicking on <Accept>, you agree to all of these. You can set the content of your consent under <More settings>, which you can change at any time. Detailed <u>cookie</u> and <u>privacy policy</u>.”
 
== Webshop cookie policy ==
 
You should add the cookies below to the essential cookies listed in your cookie policy:
{| class="wikitable"
! Cookie name
! Cookie description and its purpose
! Provider
! Cookie lifetime in your browser?
|-
|-
! category
| ba_vid
|
| Its purpose is detecting fraud in case of online payment through Barion Smart Gateway based on the digital fingerprint of your browser and online habits. This cookie provides data that we can use to identify a website user through multiple sessions.
|  
| [https://www.barion.com/en/privacy-notice/ Barion Payment Inc.]
|  
| Till 1,5 years from the last update
|  
|  
|-
|-
! list
| ba_vid.xxx
|
| Its purpose is detecting fraud in case of online payment through Barion Smart Gateway based on the digital fingerprint of your browser and online habits. This cookie provides data that we can use to identify a website user through multiple sessions. It also collects ba_vid, digital fingerprint from browser settings, first-, current- and last visit timestamps on the site and that whether 3rd party cookies are enabled or not.
|  
| [https://www.barion.com/en/privacy-notice/ Barion Payment Inc.]
|  
| Till 1,5 years from the last update
|  
|  
|-
|-
! position
| ba_sid
|
| Its purpose is detecting fraud in case of online payment through Barion Smart Gateway based on the digital fingerprint of your browser and online habits. This cookie provides data that we can use to identify a user through multiple websites.
|  
| [https://www.barion.com/en/privacy-notice/ Barion Payment Inc.]
|  
| 30 minutes
|  
|  
|-
|-
! step
| ba_sid.xxx
|  
| Its purpose is detecting fraud in case of online payment through Barion Smart Gateway based on the digital fingerprint of your browser and online habits. This cookie provides data that we can use to identify a user through a single website.
|  
| [https://www.barion.com/en/privacy-notice/ Barion Payment Inc.]
|  
| 30 minutes
|  
|}
|  
 
If the cookies' lifetimes are defined from the last update then it means that each visit on the site prolongs cookie expiry date by 1,5 years from the last visit date on the site. This data collection does not need user consent. Data management for collected data is based on Barion Payment Inc.’s legitimate interest. More [https://www.barion.com/en/privacy-notice/ information].<br>
Other technologies:
Your browser’s digital fingerprint: Its purpose is filtering out fraudulent sessions based on the users’ browsing behavior and their browsers’ fingerprints. It helps us identify individual browsers used on a specific device. We use it on our own website and through other merchants’ websites who use the Barion Smart Gateway. You can read in detail about data policies in chapter 5.4 of our [https://www.barion.com/en/privacy-notice/ privacy notice].
 
 
You should add the next cookies to your description for marketing cookies which are created for marketing purposes, personalized content and targeted ads.
{| class="wikitable"
! Cookie name
! Cookie description and its purpose
! Provider
! Cookie lifetime in your browser?
|-
|-
! customerValue
| BarionMarketingConsent.xxx
|
| Its purpose is storing your statement of consenting to the collection and usage of data regarding your browser sessions and shopping habits to provide you with tailored advertisements and offers. Provided you gave your consent, data collected by the following cookies placed for the purpose of credit card fraud prevention is also going to be used to analyze your browsing and shopping habits and to provide tailored advertisements and offers.
|  
| [https://www.barion.com/en/privacy-notice/ Barion Payment Inc.]
|  
| Till 1,5 years from the last update
|  
|
|-
|-
!
| Media and advertiser partners' cookie
|colspan = "5"| * Required only in case of Product type when using the contentView event.
| Its purpose is providing a match between Barion's and Partner's ID cookies. In the cookie matching process our Partner's server downloads and stores its own ID in the user's browser in order to synchronize Barion and Partner IDs.
| [https://www.barion.com/en/privacy-notice/ See in privacy notice]
| Read more details about cookies in our Partners' cookie policy. List of the Partners who use these kinds of cookies are available [https://docs.barion.com/Barion_Pixel#Dataprocessing_Partners here] with links to their own cookie policies.
|}
|}


===Purchase related events===
Storing marketing cookies needs your consent. Lacking consent we do not store them in your browser. You can modify or revoke your consent at any time on the website. Barion Payment Ltd collects data about your visit with the help of cookies; information about what you clicked, what product/service are you interested in or purchased, or if you interrupted your order placement. It also collects data to create models about visitor behavior and create user profiles in order to display personalized content and digital ads for users.  The goal is that advertisements for visitors appear only for those who really are interested in that item. These cookies enable us to avoid showing irrelevant ads and recommendations for you but those that are relevant for you and you are interested in.
Barion Payment Inc. manages information itself or may hand it over to its licensed media and advertiser [https://docs.barion.com/Barion_Pixel#Dataprocessing_Partners Partners]. In order to do this Partners' IDs will be also stored beside Barion's cookies. Your consent enables storing these kind of cookies too. You can read more in our [https://www.barion.com/en/privacy-notice/ privacy notice] about how Barion works with this data. If the cookies' lifetimes are provided from the last cookie update then it means that each visit on the site prolongs cookie expiry date by 1,5 years from that last visit date.
 


====addToCart/removeFromCart====
= Dataprocessing Partners =
====initiateCheckout, addPaymentInfo, initiatePurchase, purchase====
* Barions’s secure servers are operated by Sense/Net Ltd. having 22 years of operations experience, also providing assistance with customer service. Address: 1117 Budapest, Infopark boardwalk 1. I. building 5. floor 5.
====Search event====
* Predicting credit card fraud is done by SEON Technologies LLC. Address: 1136 Budapest, Pannónia street 32.
====signUp event====
* Customer Care telephony is provided by Minerva-Soft Development and Provider LLC. Address: 3900 Szerencs, Lipták road 1/a.
* The telephony services for user complaint handling is provided by Interswitch LLC. Address:1056 Budapest, Irányi street 15.
* Infrastructure for online user identification services required by money laundering laws is provided by TechTeamer LLC. Address: 1095 Budapest, Lechner Ödön avenue 3. 2. 1., B.
* Traffic statistics for our website and mobile application are provided by MIXPANEL Inc. Address: 405 Howard Street San Francisco, CA 94105
* Regarding our bookkeeping duties we are partnered with In-Voice Kontroll LLC. Address: 1046 Budapest, Leiningen Károly street 16/B
* Our mobile parking e-billing partner is KBOSS.hu LLC. (also known as szamlazz.hu) Address: 1031 Budapest, Záhony street 7.

Revision as of 14:39, 21 October 2019

Barion Pixel

The Barion Pixel is JavaScript code that allows you to track visitor activity on your website. It works by loading a JavaScript function which you can use whenever a site visitor takes an action that you want to track (this action is called an event).

In order to implement the Pixel, you will need:

  • access to your website's HTML code base
  • your Barion Pixel ID that you can access from your Barion Wallet

By default, the Pixel will track pages visited, and the devices your visitors use. In addition, you can use the Pixel's JavaScript function to track other events that are associated with webshop usage and e-commerce. Without collecting the consent of the website visitor you must still use the Barion Pixel on your website for fraud management purposes. (Tracking visitor behavior for the purposes of preventing fraud is considered a legitimate interest of Barion and the merchant in contract with Barion). The implementation of the base code is considered mandatory for using the Barion Smart Gateway.

Implementing the base code for fraud prevention

Implementing the base code is not only required for you to be considered for special offers relating to the Barion Pixel, but also for using the Barion Smart Gateway at all. This is based on the fact that both Barion and you as the website owner have a legitimate interest in fraud management, and the data provided by the Barion Pixel greatly helps these efforts. This, as a legitimate interest case, is fully compliant with the GDPR, and must be implemented independently of any consent management software that your site may use.


Init (init)

  • User intent: View pages on your site
  • To be implemented at: Every page load, in the document head tag
  • Why do we need this: This provides very basic information on user sessions, and can be implemented very easily

To use the Pixel, you need to add the following code (referred to as the base code) between the opening and closing <head> tags on every page of your site. Most developers add it to their website's persistent header, so that it appears automatically on all loaded pages.

Be sure to insert your unique Barion Pixel ID at both locations in the provided code example, marked by a red outline.

Placing the code within your <head> tags reduces the chances of browsers or third-party code blocking the Pixel's execution. It also executes the code sooner, increasing the chance that your visitors are tracked before they leave your page. Sending the data happens asynchronously in the client's browser so that it does not affect user experience.


Implementation of the base code

   
        <script>
            (function(i,s,o,g,r,a,m){i['BarionAnalyticsObject']=r;i[r]=i[r]||function(){
            (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
            m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
            })(window, document, 'script', 'https://pixel.barion.com/bp.js', 'bp');

            // send page view event
            bp('init', 'addBarionPixelId', 'BP-0000000000-00');
        </script>

        <noscript>
            <img height="1" width="1" style="display:none" src="https://pixel.barion.com/a.gif?__ba_pixel_id='BP-0000000000-00'&ev=contentView&noscript=1"/>
        </noscript>
    

If you use an ecommerce plugin (e.g. Woocommerce) and Google Tag Manager is enabled on your site you can easily implement the base code through it. See the example below.

Full Implementation for marketing purpose

This is the list of all events that are supported by the Barion Pixel. You have to implement the following events on your site in every location applicable. The more accurately you implement these, the better service quality we can provide for you, especially in connection to your market and your users, as we will receive more and better data about them. Events may require parameters that must be included in the bp function call as a JS object. These contain additional information about an event, for example product IDs, categories, and the number of products purchased. If any properties are not required and are not applicable in your case, you can simply skip them. When the implementation is finished, all events must be send and checked by watching browser console messages throughout user journeys (click on product, add to cart, initiate checkout, test purchase etc.).


Consent (grantConsent, rejectConsent)

  • User intent: Give or reject Barion Pixel consent
  • To be implemented at: Inside your own consent management software
  • Why do we need this: Participation of webshop clients is entirely consent based complying with the GDPR

Consent events determine which of the sent data can be used by us for marketing purposes. Two consent events can be used to control user consent. The "grantConsent" event has to be sent when the visitor accepts the cookie policy that expressly allows Barion to use data for marketing purposes. Sending this event must be handled by your own consent management implementation that you are responsible for as outlined in our terms. The "rejectConsent" event should be sent when the customer rejects the cookie policy that includes Barion Pixel functionality. It should be noted that rejecting Barion marketing consent does not mean that no data should be sent towards Barion, as Barion has a legitimate interest using this data for fraud management. Rejecting Barion consent however means that the data from that session will not be used for marketing purposes at all, despite receiving it. All consent events are sent by calling the Pixel's consent function as shown below. Usage of a fully compliant consent management platform (CMP) is strongly recommended by Barion. You can find our recommendation here


Consent event implementation example

   
        bp('consent', 'grantConsent');
        bp('consent', 'rejectConsent');
    


Content View (contentView)

  • Firing event: Page load of item pages minimally, preferably on all pages that refers to a single item, offer or promotion
  • User intent: View the page that shows a single offer described exclusively
  • Why do we need this: Offer descriptions help us know more about your offers

This event should be fired when one of your users enters a page that refers to one of your items that can be bought, and describes it in general terms, with an offer to buy. This can be something like an offer page on an e-commerce website or a product page on a retail site. It is important to not confuse this with a full product detail page where the product itself is described in greater detail, but there is no information on price, shipping and other details that are relevant to you offer, like in the case of a product manual.


Content view event properties

key required type description
contentType YES text If this is a product page as per minimal requirements, this value should be "Product". Otherwise select a value that best fits from these: Page/Product/Article/Promotion/Banner/Misc.
currency YES (in case of "Product") text (ISO 4217) The currency that the product price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
id YES text An unique ID that you have for the offer, this can be your ID for the product, an SKU or a promotion ID.
name YES text The full name that you have for the offer, for example a product name (eg. Red Bull 24pcs carton). Please note that item names should be consistent in all events.
quantity YES (in case of "Product") float The quantity of the product offered as initially given on the page.
unit YES (in case of "Product") text The unit that your offer is measured in (eg. pieces, kg, m).
unitPrice YES (in case of "Product") float The price of one measurement of your offer in the given currency.
brand NO text The brand of the offer.
category NO text The subcategory branch (preferred, eg. 'clothes|shoes|winter', separate levels with '|') or single category (eg. 'winter shoes' or 'summer shoes') of the offer.
contents NO array An array of JS objects for detailing multiple items of the offer. For more details see the table below.
creative NO text The name or description of the promotion, for example a promotion picture filename or slogan.
customerValue NO float A metric that you define that measures the value of the action performed to your business.
ean NO text Contains the International Article Number (EAN) of the offer if available.
imageUrl NO text The URL of the image of the viewed item.
list NO text The function of the loaded page from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
positioning NO text The product's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
step NO integer If the page is displayed along the checkout process, the checkout step number that the page is displayed in, numbered from 0 as the checkout initiation.
variant NO text The variant of the offer from the list of possible identical items (eg. the color of a phone or the time and venue of a concert or movie)

(*It's possible to add custom property)


Content view event implementation examples:


Add to Cart (addToCart)

  • Firing event: Button click that results in a product to be selected for purchase
  • User intent: Select product for purchase
  • Why do we need this: Users demonstrate strong interest in your items by selecting them for purchase

The add to cart event is, as its name suggests, connected to a user "adding a product to their cart". Usually this means that a user decide to purchase a product or service, and has added this item to their cart. Even if your website does not use carts in the literal sense, there is a point in a user session where the given user decides that they intend to purchase the product. This exact intent is what we want to capture here, so the button click which best matches the point of this intent, such as one labeled 'Buy' or 'Reserve' should be the one to attach this event to.


Add to cart event properties

key required type description
contentType YES text Usually, this value should be "Product".
currency YES text (ISO 4217) The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
id YES text An unique ID that you have for the item, this can be your ID for the product, an SKU or a promotion ID.
name YES text The full name that you have for the added item, for example a product name (eg. Red Bull 24pcs carton).
quantity YES float The quantity of the item added to the cart.
totalItemPrice YES float The total price of the added items in the given currency.
unit YES text The unit that your item is measured in (eg. pieces, kg, hours).
unitPrice YES float The price of one measurement of your item in the given currency.
brand NO text The brand of the item.
category NO text The subcategory branch (preferred, eg. 'clothes|shoes|winter', separate levels with '|') or single category (eg. 'winter shoes' or 'summer shoes') of the item.
contents NO array An array of JS objects for detailing multiple items of the item. For more details see the table below.
coupon NO text The coupon code that was used when the item was added to cart.
creative NO text The name or description of the promotion for the item, for example a promotion picture filename or slogan of the promotion that adds the items to the cart automatically.
customerValue NO float A metric that you define that measures the value of the action performed to your business.
ean NO text Contains the International Article Number (EAN) of the offer if available.
list NO text The function of the loaded page from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
positioning NO text The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
step NO integer If the page is displayed along the checkout process, the checkout step number that the page is displayed in, numbered from 0 as the checkout initiation.
variant NO text The variant of the offer from the list of possible identical items (eg. the color of a phone or the time and venue of a concert or movie)

(*It's possible to add custom property)


Add to cart event implementation examples:


Initiate Checkout (initiateCheckout)

  • Firing event: Button click that starts the checkout process
  • User intent: Purchase the items in the cart
  • Why do we need this: Users usually are put off by adverts of an item they already purchased, but can be receptive to related products

Usually on a webshop, there is a checkout process that starts with clicking a button with items in your cart. This button click is the one that this event should be attached to. After this click, typically the user has to provide other data, such as a shipping address and method, and confirm the purchase (which should fire the initiate purchase event).


Initiate checkout event properties

key required type description
contents YES array An array of JS objects for detailing the actual items contained in the cart, meaning the shipping and coupons should be excluded. For the detailed format see the table below.
currency YES text (ISO 4217) The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
revenue YES float The total revenue associated with the transaction in the given currency. This should include all costs the customer pays like shipping or tax.
step YES integer In most cases, since this is the first checkout step, this should be 1.
contentType NO text Usually this value should be "Product".
coupon NO text The coupon code that is being used.
creative NO text The name or description of the promotion for the cart, for example a promotion picture filename or slogan of the promotion that starts the checkout automatically.
customerValue NO float A metric that you define that measures the value of the action performed to your business.
list NO text In most cases this should be 'Checkout'.
opt NO text Additional information about the purchase.
orderNumber NO text The unique ID of the purchase.
positioning NO text The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
shipping NO float The price of shipping associated with the purchase in the given currency.
shippingAddress NO object The shipping address given in the format detailed below.
tax NO float The tax associated with the purchase in the given currency.

(*It's possible to add custom property)


Initiate checkout event implementation examples:


Initiate Purchase (initiatePurchase)

  • Firing event: Button click that completes the checkout process
  • User intent: Pay for the items in the cart
  • Why do we need this: Users usually are put off by adverts of an item they already purchased, but can be receptive to related products

This event should be fired at the same time as the user is redirected to a payment solution's own website, for example when the user is sent to the Barion Smart Gateway for payment. It should also be fired if the user chose a non-payment checkout option, for example payment on receipt, but the transaction is considered complete. This should be the last confirmation of the checkout process, after which the sale is considered to have taken place. Ideally after pressing this button the user should reach either a 'payment pending' then a 'thank you' page, or simply the 'thank you' page.


Initiate purchase event properties

key required type description
contents YES array An array of JS objects for detailing the actual items contained in the cart, meaning the shipping and coupons should be excluded. For the detailed format see the table below.
currency YES text (ISO 4217) The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
revenue YES float The total revenue associated with the transaction in the given currency. This should include all costs the customer pays like shipping or tax.
step YES integer It is its sequential number in checkout process.
contentType NO text Usually this value should be "Product".
coupon NO text The coupon code that is being used.
creative NO text The name or description of the promotion for the cart, for example a promotion picture filename or slogan of the promotion that starts the checkout automatically.
customerValue NO float A metric that you define that measures the value of the action performed to your business.
list NO text In most cases this should be 'Checkout'.
opt NO text Additional information about the purchase.
orderNumber NO text The unique ID of the purchase.
positioning NO text The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
shipping NO float The price of shipping associated with the purchase in the given currency.
shippingAddress NO object The shipping address given in the format detailed below.
tax NO float The tax associated with the purchase in the given currency.

(*It's possible to add custom property)


Initiate purchase event implementation examples:


Set User Properties (setUserProperties)

  • Firing event: Button click when user properties are available
  • User intent: Provide personal details
  • Why do we need this: Information about users helps us give more relevant offers to them

This event should be attached to any browser event that when fired, can access user information. We handle all user information in accordance with the GDPR and as such, all personally identifying information is hashed directly on the client side, in the JS code, before being forwarded to us, which makes it impossible to read it on our side. This makes it very important to fill out the properties provided below correctly, so that all PII falls in the correct fields that will be hashed before sending. The pages that this event can be inserted into are mostly sign up or sign in pages, newsletter subscription pages, and any other page where the user can provide information about themselves. This event can also be sent during the checkout process.


Set user properties event properties

key required hashed type description
userId YES YES text Your ID for the user, for example an username, email or internal ID that you identify the user with on your site.
accountCreatedTime NO NO UNIX timestamp The time that the user account had been created, in a UNIX timestamp that is seconds accurate.
age NO NO text The age of the user.
city NO NO text The city that the user lives in.
country NO NO text The country that the user lives in, preferably in the ISO 3166-1 alpha-2 format, eg. HU or CZ.
region NO NO text The region that the user lives in, preferably in the ISO 3166-2 format, eg. HU-BU.
currency NO NO text Currency that the user prefers, or the one that the prices are displayed to them in. 3 digit ISO 4217 format is preferred (eg. HUF, EUR).
email NO YES text The email that belongs to the user.
gender NO NO text The gender of the user.
interests NO NO text The interests of the user, separated with the pipe character, eg. "Arts|Games".
lang NO NO text The language of the user, preferably in the ISO 639-1 format, eg. hu or cz.
phone NO YES text Phone number of the user, preferably in the E.164 format, eg. +36 1 111 1111
shippingAddress NO NO object The address of the user in the format described below.
step NO NO text If the user properties are set in the checkout process, the checkout process step.
zipCode NO NO text The ZIP code

(*It's possible to add custom property)


Set user properties event implementation examples:


Category Selection (categorySelection)

  • Firing event: Button click on a category on a category selection page
  • User intent: View a category
  • Why do we need this: Users demonstrate interest in items belonging to a category by looking at the category

This event should be implemented where the user can select a category of events on a page, for example a brand, a common property, a theme, a price range or any grouping of product along something that makes them belong to the category.


Category selection event properties

key required type description
id YES text Unique ID of the category clicked on your site.
name YES text Full name of the category. (eg. 'shoes')
brand NO text Brand of the item in the category clicked.
category NO text The category (eg. 'winter shoes' or 'summer shoes') or subcategory branch (eg. 'clothes|winter|shoes' or 'clothes|summer|shoes', separate levels with '|') of the category that was clicked.
contents NO array An array of JS objects for detailing items in the category. For more details see the table below.
contentType NO text Usually this value should be "Product".
customerValue NO float The value of a user performing this event to the business.
list NO text The collection that the category clicked is in from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
positioning NO text The category's position in the list or collection (e.g. 2) or the position of the creative (e.g. banner_slot_1)
step NO integer A number that represents the progress in the checkout process.

(*It's possible to add custom property)


Category selection event implementation examples:


Click Product (clickProduct)

  • Firing event: Button click on an item
  • User intent: View an item
  • Why do we need this: Users demonstrate interest in your items by clicking them

This event should be fired each time when a user selects any of your items and then the item's page will be loaded. This could be for example on a product selection page, a result on a search or filter page, an item on a promotion. The page type on which the button is on should be specified in the 'list' property. In case of product bundles, you can use the 'contents' property to list each item in the bundle, while the direct properties should refer to the bundle as a whole as an item.



Click product event properties

key required type description
contentType YES text The type of the content of the page where the item was selected. Possible values (only these are accepted): Page/Product/Article/Promotion/Banner/Misc.
currency YES text (ISO 4217) Currency that the item is listed in for purchase. 3 digit ISO 4217 format is preferred (eg. HUF, EUR).
id YES text Unique ID of the item clicked on your site.
name YES text Full name of the item clicked.
quantity YES float The quantity of a product clicked measured in the unit provided (e.g. 2).
unit YES text The measurement unit of the item clicked. (e.g. pcs, kg).
unitPrice YES float Price of one unit (that you provided) of the item clicked (in the currency that you provided).
brand NO text Brand of the item clicked.
category NO text shoes|winter' or 'clothes|shoes|summer', separate levels with '|') of the item clicked.
contents NO array An array of JS objects for detailing multiple items clicked. For more details see the table below.
creative NO text The name or description of the promotion for the item, for example a promotion picture filename or slogan of the promotion that selects the item.
customerValue NO float The value of a user performing this event to the business.
ean NO text Contains the International Article Number (EAN) of the item if available.
list NO text The collection that the product clicked is in from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
positioning NO text The product's position in the list or collection (e.g. 2) or the position of the creative (e.g. banner_slot_1)
step NO integer A number that represents the progress in the checkout process. Usually at a click product event, this is 0.
variant NO text The variant of the product (e.g. 'black|XS') clicked.

(*It's possible to add custom property)


Click product event implementation examples:


Click Product Detail (clickProductDetail)

  • Firing event: Button click requesting extended details about an item
  • User intent: View extended information about an item
  • Why do we need this: Users demonstrate high interest in your items by looking up details about them

This event should fire on a button click that can be either a webpage or an asynchronous request for more details about an item. It should be implemented at any button that results in more details being shown about an item.


Click product detail event properties

key required type description
contentType YES text The type of the content of the page where the item was selected. Possible values (only these are accepted): Page/Product/Article/Promotion/Banner/Misc.
currency YES text (ISO 4217) Currency that the item is listed in for purchase. 3 digit ISO 4217 format is preferred (eg. HUF, EUR).
id YES text Unique ID of the item clicked on your site.
name YES text Full name of the item clicked.
unit YES text The measurement unit of the item clicked. (e.g. pcs, kg).
unitPrice YES float Price of one unit (that you provided) of the item clicked (in the currency that you provided).
variant NO text The variant of the product (e.g. 'black|XS') clicked.
brand NO text Brand of the item clicked.
category NO text shoes|winter' or 'clothes|shoes|summer', separate levels with '|') of the item clicked.
contents NO array An array of JS objects for detailing multiple items clicked. For more details see the table below.
creative NO text The name or description of the promotion for the item, for example a promotion picture filename or slogan of the promotion that selects the item.
customerValue NO float The value of a user performing this event to the business.
ean NO text Contains the International Article Number (EAN) of the item if available.
list NO text The collection that the product clicked is in from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
positioning NO text The product's position in the list or collection (e.g. 2) or the position of the creative (e.g. banner_slot_1)
step NO integer A number that represents the progress in the checkout process. Usually at a click product event, this is 0.
quantity NO float The quantity of a product clicked measured in the unit provided (e.g. 2).
variant NO text The variant of the product (e.g. 'black|XS') clicked.

(*It's possible to add custom property)


Click product detail event implementation examples:


Customize Product (customizeProduct)

  • Firing event: Button click changing particular characteristics of an item
  • User intent: Change characteristics of an item
  • Why do we need this: Users demonstrate interest in your items by customizing them

This event should fire on a button click that can be either a webpage or an asynchronous request for a different variant of an item, for example color, size etc. It should be implemented at any button that results in a different variant being shown.


Customize product event properties

key required type description
contentType YES text The type of the content of the page where the item was selected. Possible values (only these are accepted): Page/Product/Article/Promotion/Banner/Misc.
currency YES text (ISO 4217) Currency that the item is listed in for purchase. 3 digit ISO 4217 format is preferred (eg. HUF, EUR).
id YES text Unique ID of the item clicked on your site.
name YES text Full name of the item clicked.
unit YES text The measurement unit of the item clicked. (e.g. pcs, kg).
unitPrice YES float Price of one unit (that you provided) of the item clicked (in the currency that you provided).
variant YES text The variant of the product (e.g. 'black|XS') clicked.
brand NO text Brand of the item clicked.
category NO text shoes|winter' or 'clothes|shoes|summer', separate levels with '|') of the item clicked.
contents NO array An array of JS objects for detailing multiple items clicked. For more details see the table below.
creative NO text The name or description of the promotion for the item, for example a promotion picture filename or slogan of the promotion that selects the item.
customerValue NO float The value of a user performing this event to the business.
ean NO text Contains the International Article Number (EAN) of the item if available.
list NO text The collection that the product clicked is in from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
positioning NO text The product's position in the list or collection (e.g. 2) or the position of the creative (e.g. banner_slot_1)
quantity NO float The quantity of a product clicked measured in the unit provided (e.g. 2).
step NO integer A number that represents the progress in the checkout process. Usually at a click product event, this is 0.

(*It's possible to add custom property)


Customize product event implementation examples:


Purchase (purchase)

  • Firing event: Page load after the payment process
  • User intent: Verify the completion of the transaction
  • Why do we need this: Users usually are put off by adverts of an item they already purchased, but can be receptive to related products

This event should be fired on the page load where the user is notified about the completion of their transaction that is finished by successful payment. If the user chooses cash as the method of payment, usually this event should be fired when the ‘thank you’ page is loaded, if they choose online payment it should be fired when the ‘successful payment’ page is loaded. If the payment wasn't successful, then still this event still needs to be fired, except the 'step' property should set to a '-1' value.


Purchase event properties

key required type description
contents YES array An array of JS objects for detailing the actual items contained in the cart, meaning the shipping and coupons should be excluded. For the detailed format see the table below.
currency YES text (ISO 4217) The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
revenue YES float The total revenue associated with the transaction in the given currency. This should include all costs the customer pays like shipping or tax.
step YES integer In most cases, since this is after the last checkout step, this should be the maximum value that you use. If the transaction is unsuccessful, this should be -1.
contentType NO text Usually this value should be "Product".
coupon NO text The coupon code that is being used.
creative NO text The name or description of the promotion for the cart, for example a promotion picture filename or slogan of the promotion that starts the checkout automatically.
customerValue NO float A metric that you define that measures the value of the action performed to your business.
list NO text In most cases this should be 'Checkout'.
opt NO text Additional information about the purchase.
orderNumber NO text The unique ID of the purchase.
positioning NO text The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
shipping NO float The price of shipping associated with the purchase in the given currency.
shippingAddress NO object The shipping address given in the format detailed below.
tax NO float The tax associated with the purchase in the given currency.

(*It's possible to add custom property)


Purchase event implementation example:


Remove from Cart (removeFromCart)

  • Firing event: Button click that results in a product to be removed from the items selected for purchase
  • User intent: Deselect product for purchase
  • Why do we need this: Users demonstrate interest in carted products, and this can be refined if we know when products are deselected

The remove from cart event is very similar to the add to cart event, and is mainly required to refine our data on selected items by informing us when products are taken out from the cart or deselected from purchase. It can also mean that a purchase process that first made a user select an item is simply cancelled.


Remove from cart event properties

key required type description
contentType YES text Usually, this value should be "Product".
currency YES text (ISO 4217) The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
id YES text An unique ID that you have for the item, this can be your ID for the product, an SKU or a promotion ID.
name YES text The full name that you have for the added item, for example a product name (eg. Red Bull 24pcs carton).
quantity YES float The quantity of the item removed from the cart.
totalItemPrice YES float The total price of the removed items in the given currency.
unit YES text The unit that your item is measured in (eg. pieces, kg, hours).
unitPrice YES float The price of one measurement of your item in the given currency.
brand NO text The brand of the item.
category NO text The subcategory branch (preferred, eg. 'clothes|shoes|winter', separate levels with '|') or single category (eg. 'winter shoes' or 'summer shoes') of the item.
contents NO array An array of JS objects for detailing multiple items of the item. For more details see the table below.
coupon NO text The coupon code that was used when the item was removed from cart.
creative NO text Seldom used, for example a promotion that changes a product in your cart to a better, more expensive or more recent one.
customerValue NO float A metric that you define that measures the value of the action performed to your business.
ean NO text Contains the International Article Number (EAN) of the item if available.
list NO text The function of the loaded page from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
positioning NO text The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
step NO integer If the page is displayed along the checkout process, the checkout step number that the page is displayed in, numbered from 0 as the checkout initiation.
variant NO text The variant of the offer from the list of possible identical items (eg. the color of a phone or the time and venue of a concert or movie)

(*It's possible to add custom property)


Remove from cart event implementation examples:


Add Payment Info (addPaymentInfo)

  • Firing event: Button click at a point in the checkout process where the payment method is already set
  • User intent: Select payment method
  • Why do we need this: It helps to identify user financial habits

This event should be fired when the payment method of a user is already entered. This event should be fired both if the payment info is explicitly requested and provided, but also if it is only implied for example when only one option is available.


Add payment info event properties

key required type description
contents YES array An array of JS objects for detailing the actual items contained in the cart, meaning the shipping and coupons should be excluded. For the detailed format see the table below.
paymentMethod YES text The method of payment that the user chooses, for example Barion, cash etc.
step YES integer It representing the current number of step in the checkout process.
contentType NO text Usually this value should be "Product".
coupon NO text The coupon code that is being used.
creative NO text The name or description of the promotion for the cart, for example a promotion picture filename or slogan of the promotion that starts the checkout automatically.
currency NO text (ISO 4217) The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
customerValue NO float A metric that you define that measures the value of the action performed to your business.
list NO text In most cases this should be 'Checkout'.
opt NO text Additional information about the purchase.
orderNumber NO text The unique ID of the purchase.
positioning NO text The item's position in a list or collection (e.g. 2) or the position of the promotion on a page (e.g. banner_slot_1).
revenue NO float The total revenue associated with the transaction in the given currency. This should include all costs the customer pays like shipping or tax.
shipping NO float The price of shipping associated with the purchase in the given currency.
shippingAddress NO object The shipping address given in the format detailed below.
tax NO float The tax associated with the purchase in the given currency.

(*It's possible to add custom property)


Add payment info event implementation examples:

Click Promo (clickPromo)

  • Firing event: Button click on a promotion box only on your site.
  • User intent: View a promotion
  • Why do we need this: Users demonstrate interest in your promotion offers by clicking them

This event should be fired when one of your users selects a promotion on your site. Promotions can be usually placed on home pages, product places, in the checkout process and many other places. The promotion can be about a product, offer, brand or any other single offer or grouping of offers. This event should be implemented only on promotions that you serve on your page natively, as opposed to those served dynamically by external third party services such as Google Ads.


Click promo event properties

key required type description
contentType YES text The type of the content of the page where the promotion was selected. Possible values (only these are accepted): Page/Product/Article/Promotion/Banner/Misc.
creative YES text The name or description of the promotion, for example a promotion picture filename or slogan of the promotion.
id YES text Unique ID of the promotion clicked on your site.
name YES text Full name of the promotion.
brand NO text Brand of the item in the promotion clicked.
category NO text The category (eg. 'winter shoes' or 'summer shoes') or subcategory branch (eg. 'clothes|shoes|winter' or 'clothes|shoes|summer', separate levels with '|') of the item in the promotion clicked.
contents NO array An array of JS objects for detailing multiple items promoted. For more details see the table below.
currency NO text (ISO 4217) Currency that the promoted offer is listed in. 3 digit ISO 4217 format is preferred (eg. HUF, EUR).
customerValue NO float The value of a user performing this event to the business.
ean NO text Contains the International Article Number (EAN) of the item if available.
list NO text The collection that the promotion clicked is in from one of these possible values: HomePage/SearchPage/ProductPage/Recommendation/ComparisonPage/BasketPage/Checkout/Misc
positioning NO text The promotion's position in the list or collection (e.g. 2) or the position of the creative (e.g. banner_slot_1)
quantity NO float The quantity that the item is promoted in, measured in the unit provided (e.g. 2).
step NO integer A number that represents the progress in the checkout process. Usually at a click product event, this is 0.
unit NO text The measurement unit of the item promoted (e.g. pcs, kg).
unitPrice NO float Price of one unit (that you provided) of the item promoted (in the currency that you provided).
variant NO text XS') promoted.

(*It's possible to add custom property)


Click promo event implementation examples:


Sign Up (signUp)

  • Firing event: Button click that completes the registration or login process
  • User intent: Register for or login to a user account or a newsletter subscription
  • Why do we need this: Users demonstrate interest in your market area by signing up for an account

This event should be usually sent along the set user properties event in registration process, since this event only captures the actual signup, not the user itself. This event should both be fired if a user registers for an account or subscription for the first time and when they login afterwards. Unsuccessful login or signup events should cause error events to be sent. If possible, it is better if only successful attempts send a sign up event, but it is more important for all signing ups to send an event than for each signup to be only sent once.


Add to cart event properties

key required type description
contentType YES text If the user signs up for a product, then it should be 'Product' else this can be 'Page' if it is a general registration or login.
id YES text This should be your unique ID for the form used to register or login.
name YES text The name of the for used for the signing up, for example 'Register' or 'Sign In'.
brand NO text The brand of the product the user signs up for.
category NO text The subcategory branch (preferred, eg. 'clothes|shoes|winter', separate levels with '|') or single category (eg. 'winter shoes' or 'summer shoes') of the item.
contents NO array An array of JS objects for detailing multiple items of the item. For more details see the table below.
currency NO text (ISO 4217) The currency that the price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
customerValue NO float A metric that you define that measures the value of the action performed to your business.
ean NO text Contains the International Article Number (EAN) of the offer if available.
unit NO text The unit that your subscribed item is measured in (eg. pieces, kg, hours).
unitPrice NO float The price of one measurement of your item in the given currency.
variant NO text THehvariant of the offer from the list of possible identical items (eg. the color of a phone or the time and venue of a concert or movie)

(*It's possible to add custom property)


Sign up event implementation examples:


Search (search)

  • Firing event: Button click that starts a search on a page
  • User intent: Search for an offer on your page
  • Why do we need this: Users demonstrate interest in an offer by searching for it

This event is quite straightforward, every time a search button is clicked, this should send. If the search has no search button, but instead gives results on the change of the search box, then this event can be sent if the user clicks on a result. In this case, searches are sent asynchronously for partial search terms, which should not in themselves send an event. If you have a product selection page where items can be filtered, then the same can apply, the search string in this case can be the query that the settings make that can be read in your browser address bar in HTTP properties (eg. 'goats' in this: 'https://www.google.com/search?ei=A3rRXNHmJY-nrgSJs5HgDQ&q=goats').


Search event properties

key required type description
searchString YES text The search terms entered by the user or the HTTP property that contains the search terms.
contents NO array An array of JS objects containing the top ten results of your search.
contentType NO text Usually this should be 'Product'.
currency NO text (ISO 4217) If you have a filter that selects products by price, and the search string doesn't contain this, then you should provide it here.
customerValue NO float A metric that you define that measures the value of the action performed to your business.
id NO float The id of the search facility that the search is made in, for example of a search box or a filter array.
name NO text The name of the search facility that the search is made in, for example of a search box or a filter array.
totalResults NO integer The number of the search or filter results.

(*It's possible to add custom property)


Search event implementation examples:


Error (error)

  • Firing event: Any event that results in erroneous operation
  • User intent: Something else
  • Why do we need this: We can get more information about event failures

This event should be sent each time the page can't complete the requested operation, for examnple on 40x or 50x pages, failed form submissions et cetera.


Error event properties

key required type description
description YES text The description of the error, or preferably the full error message.
code NO int The error code.


Error event implementation examples:


Custom Event (customEvent)

  • Firing event: Any action that can't be described with our events
  • User intent: Something different
  • Why do we need this: We can get more information

This event is for describing any event that can't be otherwise described with our standard events.


Error event properties

key required type description
eventAction NO text The action that the user takes, eg. click.
eventCategory NO text The category that the event falls in, you can define it for yourself, eg. 'user_settings'.
eventLabel NO text The label associated with the event, eg. 'language_selection'.
eventProperty NO text The property associated with the event, eg. 'unit_format'.
eventValue NO text The value of the property associated with the event, eg. 'metric'.


Custom event implementation examples:

Special properties

Contents value type - array of objects

key required type description
contentType YES text If this is a product page as per minimal requirements, this value should be "Product". Otherwise select a value that best fits from these: Page/Product/Article/Promotion/Banner/Misc.
currency YES text (ISO 4217) The currency that the product price is provided in, preferably in the three letter ISO 4217 format (eg. HUF, EUR).
id YES text An unique ID that you have for the offer, this can be your ID for the product, an SKU or a promotion ID.
name YES text The full name that you have for the offer, for example a product name (eg. Red Bull 24pcs carton).
quantity YES float The quantity of the product offered as initially given on the page.
totalItemPrice YES float The total price of the added items in the given currency.
unit YES text The unit that your offer is measured in (eg. pieces, kg, m).
unitPrice YES float The price of one measurement of your offer in the given currency.
brand NO text The brand of the offer.
category NO text The subcategory branch (preferred, eg. 'clothes|shoes|winter', separate levels with '|') or single category (eg. 'winter shoes' or 'summer shoes') of the offer.
description NO text The detailed description of item.
ean NO text Contains the International Article Number (EAN) of the offer if available.
imageUrl NO text The URL of the image of the viewed item.
variant NO text The variant of the offer from the list of possible identical items (eg. the color of a phone or the time and venue of a concert or movie)


Address value type - array of objects

key required type description
city NO text The complete name of the city of the recipient address.
country NO text (ISO-3166-1 alpha-2) The recipient's country code in ISO-3166-1 alpha-2 format.
deliveryMethod NO text The delivery method, if applicable.
fullName NO text The full civil or official name of the recipient.
phone NO text The phone number of the recipient.
region NO text (ISO-3166-2) The region code of the recipient address in ISO-3166-2 format.
street NO text The shipping street address with house number and other details.
street2 NO text The address, continued.
zipCode NO text The zip code of the recipient address.


Custom Property

name Value Type Description
_custom any type If our predefined events and/or object properties don't suit your needs, you can include your own, custom events and/or properties. Custom properties can be used with standard events. Custom properties must start with an underscore.

Custom property implementation examples:

Implementation FAQ

When do I have to send an event?
Every event description contains the trigger that may be a page load or a button click (Firing event at the event description).


What should I do if an event is undefinable in my web shop?
If event is not applicable to any user intent either explicitly or implicitly then you do not need to implement it.


Should visitors to a product page who are coming from external ads be tracked with a clickPromo event? (for example those that are provided by third party services such as Google Ads)
No, as the click event didn’t happen on your page, this event should not be tracked on your page.


When do I have to send the setUserProperties event?
Only when users first provide personal data about themselves or they modify them, you do not need to send this event at every sign in.


What event should be sent when my user registers and signs up for a newsletter during the registration process and is afterwards automatically logged in when the registration process is completed?
In that case, you should send a setUserProperties with the personal data, one signUp event for the registration, and another signUp event for the newsletter, and finally a third signUp event for the login.


What should I send in the variant property?
Before adding it to cart, you may specify the exact type of your product, such as size or color on the product page. You have to send the value that describes the variant, not the altered quality of the item. E.g. If you specify the size and color for a T-shirt, send ’Red|XXL’ instead of ’Size|Color’


Most events have the list and contentType property, what are they?
Both of them predefined values. contentType: Page/ Product/ Article/ Promotion/ Banner/ Misc, list: HomePage/ SearchPage/ ProductPage/ Recommendation/ ComparisonPage/ BasketPage/ Checkout/ Misc. ContentType describes the type of the visited page’s content. It is ‘product’ on product page/category selection pages. If it is an article then ‘Article’ or e.g. Black Friday promotion then ‘promotion’, general pages are ‘Page’ e.g. contact or about us pages. The list describes the functionality of the page, product page (ProductPage), basket page (BasketPage) or a page in the checkout process (Checkout) etc.


What is the step property?
First of all, consider the start point of the checkout process in your case. Usually, personal data and a delivery address are given after this point but before the actual purchase. This start point will be your initiateCheckout event where the value of step is 1. And then, split your checkout process up to the purchase into different steps, and fill this property with the position of the page in the checkout sequence.


What should I do if click on basket icon does not add item into basket in all case?
In that case, you have to manage different cases in different ways. The addToCart event should only be sent in the case when an item is actually added to the cart, otherwise you should not send this event.


I have empty cart button, how do I manage click on it by removeFromCart?
Send a removeFromCart event about each item that is in the cart.


What are name and ID properties in the signUp event?
These properties do not describe the user, the name identifies user intent, e.g. ’registration’, ’login’, ’newsletter’. The ID identifies the form or the checkbox. If there is no ID, then the same value can be entered as ID as the name.


Where can I find the Barion Pixel ID?
In your Barion wallet in the shop details menu.


If no results are returned to a search initiated by a customer, should a search event be sent?
Yes, in the same way as if the search results were not empty.


If quantity added to cart by the customer exceeds the acceptable quantity of items added to cart, which one should be sent in quantity property in addToCart event?
The quantity that was finally added to the cart. If no items are added to cart then you do not need to send an addToCart event.


When do I send a purchase event?
When a purchase is completed and finished by successful payment. If the user chooses cash as the payment method, then the purchase event should be sent when the user hits the ’Thank you’ page. If the user chooses online payment, then the purchase event should be sent when the user hits a ’Successful payment’ page.


What should I do if payment is unsuccessful?
In that case you must send a purchase event when the user hits an ’Unsuccessful payment’ page, however set the step property to -1. This special step value indicates that the payment has failed.


The item name on the product page is different from the same item in checkout process, what do I do?
The only thing that’s important is that all items should be named consistently in all events, meaning that the same item should have the same name in all cases.

Consent management requirements

General requirements

In order to use cookies on your website a cookie policy and data management policy compliant with prevailing regulation must be placed on your website to sufficiently inform your users. In accordance with applicable law depending on the type of cookie placed all cookies usage and data collection can only be facilitated with the user’s consent. Compliance with these laws is the sole responsibility of the merchant. In view of the above, we remind you that placing the Barion Pixel necessitates the addition of information pertaining to the Barion Pixel to the cookie policy of the merchant website. Furthermore, using the Barion Pixel for marketing purposes requires the user’s consent, so the merchant is required to use a consent management solution compliant with prevailing law, which both obtains user consent and forwards it towards Barion according to the documentation. The Barion recommended examples for supplementing the cookie policy and the data management policy and requirements for the consent management platform can be found in the following chapter. These are the minimal requirements that you must comply with. If you are not in compliance, you bear all responsibility for all related damages. Requirements are that users can easily update or revoke their marketing consent. Furthermore, the CMP banner should appear for users every 13 months at a minimum - 30 days are recommended - with previous settings to remind them about the option to alter their consent. Its purpose is to ensure a regular reminder for user about consent options.

  • If you use a website software provider then use their provided consent management.
  • If you develop your own site, we recommend https://www.oiljs.org/ for you.

Recommended text for cookie banner

“We use Cookies and other technologies We use them for website operation, statistics, personalization of content and ads, offers and to share the data collected in this way with our media, advertising and analytics partners. Our partners can combine these with other data. By clicking on <Accept>, you agree to all of these. You can set the content of your consent under <More settings>, which you can change at any time. Detailed cookie and privacy policy.”

Webshop cookie policy

You should add the cookies below to the essential cookies listed in your cookie policy:

Cookie name Cookie description and its purpose Provider Cookie lifetime in your browser?
ba_vid Its purpose is detecting fraud in case of online payment through Barion Smart Gateway based on the digital fingerprint of your browser and online habits. This cookie provides data that we can use to identify a website user through multiple sessions. Barion Payment Inc. Till 1,5 years from the last update
ba_vid.xxx Its purpose is detecting fraud in case of online payment through Barion Smart Gateway based on the digital fingerprint of your browser and online habits. This cookie provides data that we can use to identify a website user through multiple sessions. It also collects ba_vid, digital fingerprint from browser settings, first-, current- and last visit timestamps on the site and that whether 3rd party cookies are enabled or not. Barion Payment Inc. Till 1,5 years from the last update
ba_sid Its purpose is detecting fraud in case of online payment through Barion Smart Gateway based on the digital fingerprint of your browser and online habits. This cookie provides data that we can use to identify a user through multiple websites. Barion Payment Inc. 30 minutes
ba_sid.xxx Its purpose is detecting fraud in case of online payment through Barion Smart Gateway based on the digital fingerprint of your browser and online habits. This cookie provides data that we can use to identify a user through a single website. Barion Payment Inc. 30 minutes

If the cookies' lifetimes are defined from the last update then it means that each visit on the site prolongs cookie expiry date by 1,5 years from the last visit date on the site. This data collection does not need user consent. Data management for collected data is based on Barion Payment Inc.’s legitimate interest. More information.
Other technologies: Your browser’s digital fingerprint: Its purpose is filtering out fraudulent sessions based on the users’ browsing behavior and their browsers’ fingerprints. It helps us identify individual browsers used on a specific device. We use it on our own website and through other merchants’ websites who use the Barion Smart Gateway. You can read in detail about data policies in chapter 5.4 of our privacy notice.


You should add the next cookies to your description for marketing cookies which are created for marketing purposes, personalized content and targeted ads.

Cookie name Cookie description and its purpose Provider Cookie lifetime in your browser?
BarionMarketingConsent.xxx Its purpose is storing your statement of consenting to the collection and usage of data regarding your browser sessions and shopping habits to provide you with tailored advertisements and offers. Provided you gave your consent, data collected by the following cookies placed for the purpose of credit card fraud prevention is also going to be used to analyze your browsing and shopping habits and to provide tailored advertisements and offers. Barion Payment Inc. Till 1,5 years from the last update
Media and advertiser partners' cookie Its purpose is providing a match between Barion's and Partner's ID cookies. In the cookie matching process our Partner's server downloads and stores its own ID in the user's browser in order to synchronize Barion and Partner IDs. See in privacy notice Read more details about cookies in our Partners' cookie policy. List of the Partners who use these kinds of cookies are available here with links to their own cookie policies.

Storing marketing cookies needs your consent. Lacking consent we do not store them in your browser. You can modify or revoke your consent at any time on the website. Barion Payment Ltd collects data about your visit with the help of cookies; information about what you clicked, what product/service are you interested in or purchased, or if you interrupted your order placement. It also collects data to create models about visitor behavior and create user profiles in order to display personalized content and digital ads for users. The goal is that advertisements for visitors appear only for those who really are interested in that item. These cookies enable us to avoid showing irrelevant ads and recommendations for you but those that are relevant for you and you are interested in. Barion Payment Inc. manages information itself or may hand it over to its licensed media and advertiser Partners. In order to do this Partners' IDs will be also stored beside Barion's cookies. Your consent enables storing these kind of cookies too. You can read more in our privacy notice about how Barion works with this data. If the cookies' lifetimes are provided from the last cookie update then it means that each visit on the site prolongs cookie expiry date by 1,5 years from that last visit date.


Dataprocessing Partners

  • Barions’s secure servers are operated by Sense/Net Ltd. having 22 years of operations experience, also providing assistance with customer service. Address: 1117 Budapest, Infopark boardwalk 1. I. building 5. floor 5.
  • Predicting credit card fraud is done by SEON Technologies LLC. Address: 1136 Budapest, Pannónia street 32.
  • Customer Care telephony is provided by Minerva-Soft Development and Provider LLC. Address: 3900 Szerencs, Lipták road 1/a.
  • The telephony services for user complaint handling is provided by Interswitch LLC. Address:1056 Budapest, Irányi street 15.
  • Infrastructure for online user identification services required by money laundering laws is provided by TechTeamer LLC. Address: 1095 Budapest, Lechner Ödön avenue 3. 2. 1., B.
  • Traffic statistics for our website and mobile application are provided by MIXPANEL Inc. Address: 405 Howard Street San Francisco, CA 94105
  • Regarding our bookkeeping duties we are partnered with In-Voice Kontroll LLC. Address: 1046 Budapest, Leiningen Károly street 16/B
  • Our mobile parking e-billing partner is KBOSS.hu LLC. (also known as szamlazz.hu) Address: 1031 Budapest, Záhony street 7.