"Cart details are changed" event
Ecwid.OnCartChanged
Ecwid.OnCartChanged
This event allows tracking any cart changes excluding the payment method selection. Its callback function with the cart
argument contains details about the cart after the change event.
Ecwid.OnCartChanged
event triggers when:
Cart is initialized, synced, or cleared.
Product has been added, updated (increased quantity, changed selected options), or removed from the cart.
Discount coupon or discount is applied or removed.
Shipping address is added or updated.
Shipping method is selected or changed.
Code example:
cart
argument fields
cart
argument fieldscartId
string
Cart ID. Matches with the cart ID in REST API /carts
endpoint.
id
string
Order ID, assigned to the cart. Remains the same when an order is placed.
couponName
string
Name of the discount coupon applied to the cart. Does not contain the actual coupon code.
items
array{object}
Details about products in the shopping cart.
orderId
number
Internal order ID.
productsQuantity
number
Total quantity of products added to the shopping cart.
weight
number
Total weight of products added to the shopping cart.
shippingMethod
string
Name of the selected shipping method. Available only when a customer goes to the checkout_payment_details
page.
shippingPerson
object{shippingPerson}
Details about shipping address. Available only when a customer goes to the shipping_delivery
page.
items
items
items
contains an array of objects with the details for each product added to the shopping cart.
quantity
number
Quantity of the specific product added to the shopping cart.
product
object product
Details about the product added to the shopping cart.
options
object
Map of the selected product options (option name as a key and option value as a value).
Code example for options object:
product
product
id
number
Internal product ID.
sku
string
Product SKU.
price
number
Product price before applied taxes, fees, or discounts.
name
string
Product name.
weight
number
Product weight.
shortDescription
string
Product description truncated to 120 characters.
url
string
Link to the product page.
variation
number
Product variation ID.
shippingPerson
shippingPerson
name
string
Customer's name.
companyName
string, optional
Company name of a customer, if available.
street
string, optional
Shipping/billing address. Street.
city
string, optional
Shipping/billing address. City.
countryName
string, optional
Shipping/billing address. Country name.
countryCode
string, optional
Shipping/billing address. Country code in ISO 3166-2.
postalCode
string, optional
Shipping/billing address. ZIP code.
stateOrProvinceCode
string, optional
Shipping/billing address. State code ISO 3166-2.
phone
string, optional
Customer's phone number, if available.
Last updated
Was this helpful?