How to integrate my Billetto account with Google Analytics?

How to integrate my Billetto account with Google Analytics?

 

Billetto’s integration with Google Analytics provides a powerful insight into the users who view your event, the performance of each ticket type you set up, and the sources that provide traffic towards your events.

Integration can be done on the Account Level or Event Level.

On an Event Level, you can do this by:

  • Go to My Events;
  • Then Manage;
  • Then Marketing;
  • Then Analytics;
  • Enter the information and click Save.

 

Screenshot_2022-02-02_at_08.24.39.png

On Account Level, you can do this by:

  • Go to Menu;
  • Then Integrate;
  • Then Analytics;
  • Enter the information and click Save.

Screenshot_2022-02-02_at_08.26.34.png

 

You can find your Tracking ID by reading Google's article here

 

 

Using our widget on your website?

You can listen out for events sent from our widget iframe to your website with the following:

  • Viewed (Open Widget)
  • AddToCart (Ticket added to basket)
  • BeginCheckout (Payment screen)
  • Purchase (Order completed)

We recommend adding the javascript event listener in the widget for example to get the details via a console log in debugging

<script type="text/javascript">      
      const org_widget = document.querySelector("billetto-organiser-widget");
      org_widget.addEventListener("viewed", (e) => console.log("org Viewed", e.detail));
      org_widget.addEventListener("add_to_cart", (e) => console.log("org Added to cart", e.detail));
      org_widget.addEventListener("begin_checkout", (e) => console.log("org Begin checkout", e.detail));
      org_widget.addEventListener("purchase", (e) => console.log("org Purchase", e.detail));
    </script>