Skip to main content
Fires when a customer enters shipping details during checkout. This helps track checkout progress and identify where customers drop off.
Shopify: Automatically tracked when customers complete the shipping step in checkout.

JavaScript

window._upstack('track', 'add_shipping_info', {
  items: [
    { id: 'SKU_12345', name: 'Classic Cotton Tee', price: 34.99, quantity: 2 }
  ],
  value: 84.97,
  currency: 'USD',
  shippingTier: 'standard'
});

Properties

PropertyTypeRequiredDescription
itemsarrayNoProducts in checkout
valuenumberNoCart value at shipping step
currencystringNoISO 4217 currency code
shippingTierstringNoShipping method (e.g., 'standard', 'express', 'overnight')

When to Fire

  • Shipping form completion
  • Shipping method selection
  • Proceeding past shipping step