Movatterモバイル変換


[0]ホーム

URL:


Dev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubDev CommunityOptimizely AcademySubmit a ticketLog InOptimizely Data Platform
Dev Guide
All
Pages
Start typing to search…

Events

Describes events for the Optimizely Data Platform (ODP) Web SDK.

Events describe actions yourcustomers perform or actions that result in an update to their customer record such as viewing your web page or visiting your store in New York.

You can record online events from your web page by callingzaius.event() on a page that has theODP JavaScript snippet implemented. Theevent() method includes the VUID (cookie ID) on requests automatically.

The following are predefined event types in ODP. If you need to track additional events, you can create your own custom events. SeeCustom events in the Web SDK.

Events in the Web SDK require anevent type andevent action.

zaius.event("{event type}", {     action: "{event action}",});

Customer event

Configure customer identification events, for example customer log in.

zaius.event("customer", {      action: "login",      customer_id: "{{YOUR_VARIABLE_FOR_CUSTOMER_ID}}", //or other identifier      email:"{{YOUR_VARIABLE_FOR_EMAIL}}", });

Account event

If your website has customer login or registration workflow, you can track events based on their account.

Account Register

zaius.event("account", { action: "register" });

Account Login

zaius.event("account", {  action: "login" });

Account Logout

zaius.event("account", {   action: "logout" });

Account Update

zaius.event("account", {  action: "update" });

Wishlist event

Add to Wishlist

zaius.event("product", {   action: "add_to_wishlist",   product_id: "product-2143" });

Remove from Wishlist

zaius.event("product", {   action: "remove_from_wishlist",   product_id: "product-2143" });

Page view event

ODP automatically parses the appropriate page path information.

zaius.event("pageview");

Product event

The products object is a "stateful" object, meaning it stores the current state of your product inventory. SeeProducts.

🚧

Important

product_id is required on all events with an event type ofproduct.

Configure product interactions

zaius.event("product", {  action: "detail",  customer_id: "{{YOUR_VARIABLE_FOR_CUSTOMER_ID}}",  //or other identifier  email:"{{YOUR_VARIABLE_FOR_EMAIL}}",  //if email is not available, do not send it  product_id: "{{YOUR_VARIABLE_FOR_PRODUCT_ID"}}});

Details viewed

zaius.event("product", {  action: "detail",   product_id: "product-2143" });

Add to cart

zaius.event("product", {   action: "add_to_cart",   product_id: "product-2143" });

Remove from cart

zaius.event("product", {   action: "remove_from_cart",   product_id: "product-2143" });

Order event

Order Purchase

❗️

Warning

Optimizely does not recommend or formally support order events in the Web SDK to ensure that ad blockers do not block the purchase event.

Send purchase events throughODP REST API orCSV.

Refunds/Returns/Cancellations

❗️

Warning

ODP supports sending orderrefunds,returns, andcancellations using only theODP REST API orCSV to ensure that ad blockers do not block these critical events.

Navigation event

Search

zaius.event("navigation", {   action: "search",   search_term:"cameras, vcr",  category: "electronics > consumer"});

Sort

zaius.event("navigation", {   action: "sort"});

Filter

zaius.event("navigation", {   action: "filter"});

Track events example

The example below shows how to track the following events:

  • Product detail view
  • Checkout started
  • Checkout completed
  • Add to cart
  • Add to wishlist
  • Remove from cart
  • Remove from wishlist

Copy the following JavaScript code snippet and paste it below the ODP JavaScript tag on every page of your site where you want to track this data.

// Product detail viewif (document.getElementById('productCode')) {    var productCode = document.getElementById('productCode');    zaius.event('product', { action: 'detail', product_id: productCode.value });}// Checkout startedif (document.getElementById('jsCheckoutForm')) {    var productCode = document.getElementById('productCode');    zaius.event('checkout', { action: 'start' });}// Checkout completedif (window.location.href.indexOf("order-confirmation") > 0){    var productCode = document.getElementById('productCode');    zaius.event('checkout', { action: 'complete' });}$(document).ready(function () {    // Add to cart    $(document).find('.addToCart').each(function (i, e) {        $(e).click(function () {            let code = $(this).attr('data');            zaius.event('product', { action: 'add_to_cart', product_id: code });        });    });    // Add to wishlist    $(document).find('.addToWishlist').each(function (i, e) {        $(e).click(function () {            let code = $(this).attr('data');            zaius.event('product', { action: 'add_to_wishlist', product_id: code });        });    });    // Remove from cart    $('#js-cart-popover').on('click', '.jsRemoveCartItem', function () {        let code = $(this).attr('code');        zaius.event('product', { action: 'remove_from_cart', product_id: code });    });    $('.large-cart').on('click', '.jsRemoveCartItem', function () {        let code = $(this).attr('code');        zaius.event('product', { action: 'remove_from_cart', product_id: code });    });    // Remove from wishlist    $('#js-wishlist-popover').on('click', '.jsRemoveCartItem', function () {        let code = $(this).attr('code');        zaius.event('product', { action: 'remove_from_wishlist', product_id: code });    });    $('.my-account').on('click', '.deleteLineItemWishlist', function () {        let code = $(this).attr('data');        zaius.event('product', { action: 'remove_from_cart', product_id: code });    });});

Updated 26 days ago



[8]ページ先頭

©2009-2025 Movatter.jp