Skip to main content

Snowplow ecommerce tracking

This plugin is the recommended way to track ecommerce events on your store. Functions, usage and a complete setup journey is showcased on the E-commerce Web Accelerator.

It provides several trackX methods, which each create a Snowplow ecommerce action event with the appropriate entities attached. The event itself has only one property, an enum describing the ecommerce action taken e.g. "add_to_cart". View the schema here. All the provided data is sent in context entities.

There are also two context entities that can be globally configured: ecommerce page and ecommerce user.

note

The plugin is available since version 3.8 of the tracker.

Snowplow ecommerce events and entities must be manually tracked.

Install pluginโ€‹

Tracker DistributionIncluded
sp.jsโŒ
sp.lite.jsโŒ

Download:

Download from GitHub Releases (Recommended)Github Releases (plugins.umd.zip)
Available on jsDelivrjsDelivr (latest)
Available on unpkgunpkg (latest)
window.snowplow(
'addPlugin',
'https://cdn.jsdelivr.net/npm/@snowplow/browser-plugin-snowplow-ecommerce@latest/dist/index.umd.min.js',
['snowplowEcommerceAccelerator', 'SnowplowEcommercePlugin']
);

Eventsโ€‹

APIUsed for:
trackProductViewTracking a visit to a product page. Known also as product detail view.
trackAddToCartTrack an addition to cart.
trackRemoveFromCartTrack a removal from cart.
trackProductListViewTrack an impression of a product list. The list could be a search results page, recommended products, upsells etc.
trackProductListClickTrack the click/selection of a product from a product list.
trackPromotionViewTrack an impression for an internal promotion banner or slider or any other type of content that showcases internal products/categories.
trackPromotionClickTrack the click/selection of an internal promotion.
trackCheckoutStepTrack a checkout step completion in the checkout process together with common step attributes for user choices throughout the checkout funnel.
trackTransactionTrack a transaction/purchase completion.
trackRefundTrack a transaction partial or complete refund.
trackTransactionErrorTrack an error happening during a transaction process.

Product viewโ€‹

To track a product view you can use the trackProductView method with the following attributes:

window.snowplow("trackProductView:{trackerName}", {
id: "12345",
name: "Baseball T",
brand: "Snowplow",
category: "apparel",
price: 200,
currency: "USD",
});

Add to cartโ€‹

To track a product/s addition to the cart you can use the trackAddToCart method with the following attributes:

window.snowplow("trackAddToCart:{trackerName}", {
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
currency: "USD",
},
],
total_value: 200,
currency: "USD",
});
  • Where products is an array with the product/s added to cart.
  • Where total_value is the value of the cart after the addition.
  • Where currency is the currency of the cart.

Remove from cartโ€‹

To track a product/s removal from the cart you can use the trackRemoveFromCart method with the following attributes:

window.snowplow("trackRemoveFromCart:{trackerName}", {
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
currency: "USD",
},
],
total_value: 0,
currency: "USD",
});
  • Where products is an array with the product/s removed from the cart.
  • Where total_value is the value of the cart after the removal of the product/s.
  • Where currency is the currency of the cart.

Product list viewโ€‹

To track a product list view you can use the trackProductListView method with the following attributes:

window.snowplow("trackProductListView:{trackerName}", {
products: [
{
id: "P123",
name: "Fashion red",
brand: "Snowplow",
category: "Mens/Apparel",
price: 100,
inventory_status: "in stock",
currency: "USD",
position: 1,
},
{
id: "P124",
name: "Fashion green",
brand: "Snowplow",
category: "Mens/Apparel",
price: 119,
inventory_status: "in stock",
currency: "USD",
position: 2,
},
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
inventory_status: "in stock",
currency: "USD",
position: 3,
},
],
name: "Recommended Products",
});
  • Where products is an array of products being viewed from the list.
  • Where name is the name of the list being viewed. For the list names, you can use any kind of friendly name or a codified language to express the labeling of the list. E.g. 'Shoes - Men - Sneakers','Search results: "unisex shoes"', 'Product page upsells'

Product list clickโ€‹

window.snowplow("trackProductListClick:{trackerName}", {
product: {
id: "P124",
name: "Fashion green",
brand: "Snowplow",
category: "Mens/Apparel",
price: 119,
inventory_status: "in stock",
currency: "USD",
position: 2,
},
name: "Recommended Products",
});
  • Where product is the product being clicked/selected from the list.
  • Where name is the name of the list the product is currently in. For the list names, you can use any kind of friendly name or a codified language to express the labeling of the list. E.g. 'Shoes - Men - Sneakers','Search results: "unisex shoes"', 'Product page upsells'

Promotion viewโ€‹

/* Carousel slide 1 viewed */
window.snowplow("trackPromotionView:{trackerName}", {
id: 'IP1234',
name: 'promo_winter',
type: 'carousel',
position: 1,
product_ids: ['P1234'],
});

/* On carousel slide 2 view */
window.snowplow("trackPromotionView:{trackerName}", {
id: 'IP1234',
name: 'promo_winter',
type: 'carousel',
position: 2,
product_ids: ['P1235'],
});

Promotion clickโ€‹

window.snowplow("trackPromotionClick:{trackerName}", { 
id: 'IP1234',
name: 'promo_winter',
type: 'carousel',
position: 1,
product_ids: ['P1234'],
});

Checkout stepโ€‹

To track a checkout step you can use the trackCheckoutStep method with the following attributes:

/* Step 1 - Account type selection */
window.snowplow("trackCheckoutStep:{trackerName}", {
step: 1,
account_type: "guest checkout",
});

/* Step 2 - Billing options selection */
window.snowplow("trackCheckoutStep:{trackerName}", {
step: 2,
payment_method: "credit card",
proof_of_payment: "invoice",
});

Transactionโ€‹

To track a completed transaction you can use the trackTransaction method with the following attributes:

window.snowplow("trackTransaction:{trackerName}", {
transaction_id: "T12345",
revenue: 230,
currency: "USD",
payment_method: "credit_card",
total_quantity: 1,
tax: 20,
shipping: 10,
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
inventory_status: "in stock",
currency: "USD",
},
],
});
  • Where products is an array with the product/s taking part in the transaction.

Refundโ€‹

note

Available from version 3.10.

To track a complete or partial refund you can use the trackRefund method with the following attributes:

window.snowplow("trackRefund:{trackerName}", {
transaction_id: "T12345",
currency: "USD",
refund_amount: 200,
refund_reason: "return",
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
inventory_status: "in stock",
currency: "USD",
},
],
});
  • Where products is an array with the product/s taking part in the refund.

Transaction errorโ€‹

note

Available from version 3.13.

To track an error happening during a transaction process you can use the trackTransactionError method with the following attributes:

window.snowplow("trackTransactionError:{trackerName}", {
resolution: "rejection",
error_code: "E123",
error_shortcode: "CARD_DECLINE",
error_description: "Card has been declined by the issuing bank.",
error_type: "hard",
transaction: {
revenue: 45,
currency: "EUR",
transaction_id: "T12345",
payment_method: "card",
total_quantity: 1
}
});
  • Where transaction is the transaction entity being processed.

Page and user entitiesโ€‹

Once set, the ecommerce page or user context entity will be attached to *all subsequent Snowplow events.

Page typeโ€‹

To set a Page type context entity you can use the setPageType method with the following attributes:

window.snowplow("setPageType:{trackerName}", { type, language, locale });

After setting the Page context entity, it will be attached to every subsequent Snowplow event.

An ecommerce page entity can have the following attributes:

attributetypedescriptionrequired
typestringThe type of the page that was visited E.g. homepage, product page, checkout page.โœ…
languagestringThe language that the web page is based in.โœ˜
localestringThe locale version of the site that is running.โœ˜
Relevant Iglu schema

Ecommerce userโ€‹

To set an Ecommerce User context entity you can use the setEcommerceUser method with the following attributes:

window.snowplow("setEcommerceUser:{trackerName}", { id, is_guest, email });

After setting the User context entity, it will be attached to every subsequent Snowplow event.

An ecommerce user entity can have the following attributes:

attributetypedescriptionrequired
idstringThe user ID.โœ…
is_guestbooleanWhether or not the user is a guest.โœ˜
emailstringThe user's email address.โœ˜
Relevant Iglu schema

Automatically generated entitiesโ€‹

All the provided data is sent as context entities attached to the generic Snowplow ecommerce action event. For example, tracking a product view results in an ecommerce action event (type "product_view") with one product entity attached.

Productโ€‹

Whenever there is a product entity involved in the ecommerce interaction event, the product or array of products can have the following attributes:

attributetypedescriptionrequired
idstringSKU or product ID.โœ…
currencystringCurrency in which the product is being priced (ISO 4217).โœ…
pricenumberPrice of the product at the current time.โœ…
namestringName or title of the product.โœ˜
categorystringCategory the product belongs to. Use a consistent separator to express multiple levels. E.g. Woman/Shoes/Sneakers. The number of levels is defined by the user.โœ˜
list_pricenumberRecommended or list price of a product.โœ˜
quantitynumberQuantity of the product taking part in the action. Used for Cart events.โœ˜
sizestringSize of the product. E.g. XL, XS, M.โœ˜
variantstringVariant of the product. E.g. Red, Heavy, Leather.โœ˜
brandstringBrand of the product.โœ˜
inventory_statusstringInventory status of the product. E.g. in stock, out of stock, preorder, backorder.โœ˜
positionnumberPosition the product was presented in a list of products. Used in Product List events.โœ˜
creative_idstringIdentifier/Name/Url for the creative presented on a list or product view.โœ˜
Relevant Iglu schema

Internal promotionโ€‹

On internal promotion events, an internal promotion can have the following attributes:

attributetypedescriptionrequired
idstringThe unique ID representing this promotion element.โœ…
namestringThe friendly name for this promotion element.โœ˜
product_idsstring[]An array of SKUs or product IDs showcased in this promotion element.โœ˜
positionintegerThe position this promotion element was presented in a list of promotions E.g. banner, slider.โœ˜
creative_idstringIdentifier/Name/Url for the creative presented on this promotion element.โœ˜
typestringThe type of the promotion delivery mechanism. E.g. popup, banner, intra-content.โœ˜
slotstringThe website slot in which the promotional content was added to. E.g. Identifier for slot sidebar-1, intra-content-2.โœ˜
Relevant Iglu schema

Cartโ€‹

On cart interaction ecommerce events, a cart can have the following attributes:

attributetypedescriptionrequired
total_valuenumberThe total value of the cart after this interaction.โœ…
currencystringThe currency used for this cart (ISO 4217).โœ…
cart_idstringThe unique ID representing this cart.โœ˜
Relevant Iglu schema

Checkout stepโ€‹

Whenever there is a checkout entity involved in the ecommerce interaction event, it can have the following attributes:

attributetypedescriptionrequired
stepnumberCheckout step index.โœ…
shipping_postcodestringShipping address postcode.โœ˜
billing_postcodestringBilling address postcode.โœ˜
shipping_full_addressstringFull shipping address.โœ˜
billing_full_addressstringFull billing address.โœ˜
delivery_providerstringCan be used to discern delivery providers DHL, PostNL etc.โœ˜
delivery_methodstringCan be used to discern delivery methods selected E.g. store pickup, standard delivery, express delivery, international.โœ˜
coupon_codestringCoupon applied at checkout.โœ˜
account_typestringType of account used on checkout. E.g. existing user, guest.โœ˜
payment_methodstringAny kind of payment method the user selected to proceed E.g. card, PayPal, Alipay etc.โœ˜
proof_of_paymentstringInvoice or receipt.โœ˜
marketing_opt_inbooleanIf opted in to marketing campaigns.โœ˜
Relevant Iglu schema

Transactionโ€‹

Whenever there is a transaction entity involved in the ecommerce interaction event, it can have the following attributes:

attributetypedescriptionrequired
transaction_idstringThe ID of the transactionโœ…
currencystringThe currency used for the transaction (ISO 4217).โœ…
revenuenumberThe revenue of the transaction.โœ…
payment_methodstringThe payment method used for the transaction.โœ…
total_quantitynumberTotal quantity of items in the transaction.โœ…
taxnumberTotal amount of tax on the transaction.โœ˜
shippingnumberTotal cost of shipping on the transaction.โœ˜
discount_codestringDiscount code used.โœ˜
discount_amountnumberDiscount amount taken off.โœ˜
credit_orderbooleanWhether the transaction is a credit order or not.โœ˜
Relevant Iglu schema

Refundโ€‹

Whenever there is a refund entity involved in the ecommerce interaction event, it can have the following attributes:

attributetypedescriptionrequired
transaction_idstringThe ID of the transactionโœ…
currencystringThe currency used for the transaction (ISO 4217).โœ…
refund_amountnumberThe amount refunded from the transaction.โœ…
refund_reasonstringThe reason that resulted in a refund.โœ˜
Relevant Iglu schema

Transaction errorโ€‹

Whenever there is a transaction error entity involved in the ecommerce interaction event, it can have the following attributes:

attributetypedescriptionrequired
error_codestringError-identifying code for the transaction issue. E.g. E522โœ˜
error_shortcodestringShortcode for the error occurred in the transaction. E.g. declined_by_stock_api, declined_by_payment_method, card_declined, pm_card_radarBlockโœ˜
error_descriptionnumberLonger description for the error occurred in the transaction.โœ˜
error_typeEnum stringEither 'hard' or 'soft'. Hard error types mean the customer must provide another form of payment e.g. an expired card. Soft errors can be the result of temporary issues where retrying might be successful e.g. processor declined the transaction.โœ˜
resolutionstringThe resolution selected for the error scenario. E.g. retry_allowed, user_blacklisted, block_gateway, contact_user, defaultโœ˜
Relevant Iglu schema

GA4/UA Ecommerce transitional APIโ€‹

note

Available from version 3.10.

If you already use Google Analytics 4 ecommerce or Universal Analytics Enhanced Ecommerce to collect information about the shopping behavior of your users, we have prepared a way to quickly implement Snowplow Ecommerce without making many changes on your current setup.

The transitional API that we provide, depends on the standardized dataLayer structure for both Google Analytics ecommerce implementations. This would make it easier for the transition to happen either through Google Tag Manager, which has more control over the dataLayer, or custom code that uses the standard ecommerce structures.

info

To learn more about how to use this transitional API, you should go ahead and visit our Ecommerce Web Accelerator dedicated page which describes the usage of these methods and more.

Universal Analytics Enhanced Ecommerceโ€‹

The standard Universal Analytics Enhanced Ecommerce implementation is based on the official guide reference.

Important: The dataLayer.currencyCode attribute must be available for all product interactions. Otherwise, almost all methods accept an Options object which can include the currency code as follows:

method({{dataLayer.ecommerce reference}} , { currency: "currency code" });

trackEnhancedEcommerceProductListViewโ€‹

To track an Enhanced Ecommerce product list view, you can use the trackEnhancedEcommerceProductListView method with the following attributes:

window.snowplow("trackEnhancedEcommerceProductListView:{trackerName}", {{dataLayer.ecommerce reference}});

trackEnhancedEcommerceProductListClickโ€‹

To track an Enhanced Ecommerce product list click, you can use the trackEnhancedEcommerceProductListClick method with the following attributes:

window.snowplow("trackEnhancedEcommerceProductListClick:{trackerName}", {{dataLayer.ecommerce reference}});

trackEnhancedEcommerceProductDetailโ€‹

To track an Enhanced Ecommerce product detail view, you can use the trackEnhancedEcommerceProductDetail method with the following attributes:

window.snowplow("trackEnhancedEcommerceProductDetail:{trackerName}", {{dataLayer.ecommerce reference}});

trackEnhancedEcommercePromoViewโ€‹

To track an Enhanced Ecommerce internal promotion view, you can use the trackEnhancedEcommercePromoView method with the following attributes:

window.snowplow("trackEnhancedEcommercePromoView:{trackerName}", {{dataLayer.ecommerce reference}});

trackEnhancedEcommercePromoClickโ€‹

To track an Enhanced Ecommerce internal promotion click, you can use the trackEnhancedEcommercePromoClick method with the following attributes:

window.snowplow("trackEnhancedEcommercePromoClick:{trackerName}", {{dataLayer.ecommerce reference}});

trackEnhancedEcommerceAddToCartโ€‹

To track an Enhanced Ecommerce add to cart event, you can use the trackEnhancedEcommerceAddToCart method with the following attributes:

window.snowplow("trackEnhancedEcommerceAddToCart:{trackerName}", {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
  • Where finalCartValue is the value of the cart after the addition.

trackEnhancedEcommerceRemoveFromCartโ€‹

To track an Enhanced Ecommerce remove from cart event, you can use the trackEnhancedEcommerceRemoveFromCart method with the following attributes:

window.snowplow("trackEnhancedEcommerceRemoveFromCart:{trackerName}", {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
  • Where finalCartValue is the value of the cart after the removal.

trackEnhancedEcommerceCheckoutStepโ€‹

To track an Enhanced Ecommerce remove from cart event, you can use the trackEnhancedEcommerceCheckoutStep method with the following attributes:

window.snowplow("trackEnhancedEcommerceCheckoutStep:{trackerName}", {{dataLayer.ecommerce reference}}, {
checkoutOption: { delivery_method: "express_delivery" },
});
  • Where checkoutOption is a key value pair object of available Snowplow checkout options, except step which is retrieved from the dataLayer directly.

trackEnhancedEcommercePurchaseโ€‹

To track an Enhanced Ecommerce remove from cart event, you can use the trackEnhancedEcommercePurchase method with the following attributes:

window.snowplow("trackEnhancedEcommercePurchase:{trackerName}", {{dataLayer.ecommerce reference}}, {
paymentMethod: "bank_transfer",
});
  • Where paymentMethod is the payment method selected in this transaction. This attributes corresponds to the payment_method of the transaction schema. Defaults to unknown.

Google Analytics 4 Ecommerceโ€‹

The Google Analytics 4 ecommerce implementation is based on the official guide reference.

Important: The dataLayer.ecommerce.currency attribute must be available for all product interactions. Otherwise, almost all methods accept an Options object which can include the currency code as follows:

method( {{dataLayer.ecommerce reference}} , { currency: "currency code" });

trackGA4ViewItemListโ€‹

To track an GA4 Ecommerce item list view, you can use the trackGA4ViewItemList method with the following attributes:

window.snowplow("trackGA4ViewItemList:{trackerName}", {{dataLayer.ecommerce reference}});

trackGA4SelectItemโ€‹

To track an GA4 Ecommerce item selection from a list, you can use the trackGA4SelectItem method with the following attributes:

window.snowplow("trackGA4SelectItem:{trackerName}", {{dataLayer.ecommerce reference}});

trackGA4ViewItemโ€‹

To track an GA4 Ecommerce item view, you can use the trackGA4ViewItem method with the following attributes:

window.snowplow("trackGA4ViewItem:{trackerName}", {{dataLayer.ecommerce reference}});

trackGA4ViewPromotionโ€‹

To track an GA4 Ecommerce internal promotion view, you can use the trackGA4ViewPromotion method with the following attributes:

window.snowplow("trackGA4ViewPromotion:{trackerName}", {{dataLayer.ecommerce reference}});

trackGA4SelectPromotionโ€‹

To track an GA4 Ecommerce internal promotion selection, you can use the trackGA4SelectPromotion method with the following attributes:

window.snowplow("trackGA4SelectPromotion:{trackerName}", {{dataLayer.ecommerce reference}});

trackGA4AddToCartโ€‹

To track an GA4 Ecommerce add to cart event, you can use the trackGA4AddToCart method with the following attributes:

window.snowplow("trackGA4AddToCart:{trackerName}", {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
  • Where finalCartValue is the value of the cart after the addition.

trackGA4RemoveFromCartโ€‹

To track an GA4 Ecommerce remove from cart event, you can use the trackGA4RemoveFromCart method with the following attributes:

window.snowplow("trackGA4RemoveFromCart:{trackerName}", {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
  • Where finalCartValue is the value of the cart after the removal.

trackGA4BeginCheckoutโ€‹

To track an GA4 Ecommerce checkout beginning, you can use the trackGA4BeginCheckout method with the following attributes:

window.snowplow("trackGA4BeginCheckout:{trackerName}", {
step: 1,
});
  • Where step is a number representing the step of the checkout funnel. Defaults to 1, mimicking the begin_checkout GA4 event.

trackGA4AddShippingInfoโ€‹

To track an GA4 Ecommerce checkout shipping info step completion, you can use the trackGA4AddShippingInfo method with the following attributes:

window.snowplow("trackGA4AddShippingInfo:{trackerName}", {
step: 1,
});
  • Where step is a number representing the step of the checkout funnel.

trackGA4AddPaymentOptionsโ€‹

To track an GA4 Ecommerce checkout payment option step completion, you can use the trackGA4AddPaymentOptions method with the following attributes:

window.snowplow("trackGA4AddPaymentOptions:{trackerName}", {
step: 1,
});
  • Where step is a number representing the step of the checkout funnel.

trackGA4Transactionโ€‹

To track an GA4 Ecommerce checkout payment option step completion, you can use the trackGA4Transaction method with the following attributes:

window.snowplow("trackGA4Transaction:{trackerName}", {
paymentMethod: "bank_transfer",
});
  • Where paymentMethod is the payment method selected in this transaction. This attributes corresponds to the payment_method of the transaction schema. Defaults to unknown.
Was this page helpful?