Cart Viewed Event
To report an event when a customer views their shopping cart.
Function Interface
events.cartViewed(eventParameter:CartViewedEventParameter)
CartViewedEventParameter
| Parameter | Type | Required | Description |
|---|---|---|---|
| currency | string | ✔ | The store currency, following the ISO 4217 standard. |
| totalAmount | string | ✔ | The total value of the viewed products. |
| items | Item[] | ✔ | The items in the cart. Refer to the Item resource page for details. |
Example
preparing...