Skip to main content

Cart Events

Cart Page Visited

window.FastSimonSDK.event({
reportAppType: "SPA",
eventName: window.FastSimonEventName.CartVisited,
data: {} // (Required)
});

Product Added to cart

window.FastSimonSDK.event({
reportAppType: "SPA",
eventName: window.FastSimonEventName.AddToCartPerformed,
data: {
productID: "123" // (Required)
}
});