Get cart details
Ecwid.Cart.get()
This method allows you to receive full information about the current shopping cart. The response is available in the cart
callback.
cart
callback fields
cart
callback 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 and becomes visible to the customer and store owner in notifications and Ecwid admin.
orderId
string
Internal order ID for Ecwid services. Use id
field instead.
items
Details about products in the shopping cart.
productsQuantity
number
Total quantity of products added to the shopping cart.
subtotal
number
Cart subtotal – cost of all products added to the cart without any discounts, taxes, or shipping costs applied.
total
number
Cart total – total cost of the cart with all available price modifiers applied.
isPricesIncludeTax
boolean
Defines if the order uses gross/net prices.
tax
number
Total tax applied to the cart. May include taxes to both product and shipping costs.
couponName
string
Name of the discount coupon applied to the cart. Does not contain the actual coupon code.
paymentMethod
string
Name of the payment method selected by a customer at the storefront.
paymentModule
string
Internal "module" for the payment method selected by a customer at the storefront. Only available for Ecwid-build payment methods.
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
Details about shipping address. Available only when a customer goes to the shipping_delivery
page.
billingPerson
Details about customer's billing address. Has the same format with the shippingPerson
.
Becomes available only when a customer goes to the payment page.
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
Details about the product added to the shopping cart.
options
object options
Map of the selected product options (option name as a key
and option value as a value
).
Code example for options
object:
product
id
number
Internal product ID.
sku
string
Product SKU.
price
number
Product price before applied taxes, fees, or discounts.
isCustomerSetPrice
boolean
If true
, product allows customer to set their own price for it.
selectedPrice
number
If isCustomerSetPrice
is true
, contains a custom price for the product that the customer entered before adding a product to the cart.
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
If selected options match with one of product variations, this field contains the ID of product variation added to the cart.
mediaItem
Details about product media (images and video)
recurringChargeSettings
Details about subscription customer has chosen for the product. Only available for subscription products.
shippingPerson
name
string
Customer's name.
companyName
string
Company name of a customer, if available.
street
strin
Shipping/billing address. Street.
city
string
Shipping/billing address. City.
countryName
string
Shipping/billing address. Country name.
countryCode
string
Shipping/billing address. Country code in ISO 3166-2.
postalCode
string
Shipping/billing address. ZIP code.
stateOrProvinceCode
string
Shipping/billing address. State code ISO 3166-2.
phone
string
Customer's phone number, if available.
mediaItem
type
string
One of:
PICTURE
VIDEO
isMain
boolean
Defines if the image is main for the product. Products can have only one main image and multiple secondary ones referred as the "gallery".
Only for the PICTURE
type.
id
string
Internal image ID.
Only for the PICTURE
type.
borderInfo
Details about image border.
Only for the PICTURE
type.
width
number
Image width in pixels.
Only for the PICTURE
type.
height
number
Image height in pixels.
Only for the PICTURE
type.
image160pxUrl
string
Link to the image resized to fit 160x160px container.
Only for the PICTURE
type.
image400pxUrl
string
Link to the image resized to fit 400x400px container.
Only for the PICTURE
type.
image800pxUrl
string
Link to the image resized to fit 800x800px container.
Only for the PICTURE
type.
videoInfo
Details about embedded video.
Only for the VIDEO
type.
videoInfo
embedHtml
string
String with HTML code for video embedding.
url
string
Link to the video.
width
number
Width of the embedded video.
height
number
Height of the embedded video.
borderInfo
dominatingColor
Border color in RGBa format.
homogeneity
boolean
Defines if an image is homogeneous.
dominatingColor
isDark
number
true
if the image is considered dark.
isFullyTransparent
number
true
if the image is considered transparent.
rbgHexValue
number
HEX code for the calculated "medium" color of all outside pixels of the image, for example #2e3236
.
recurringChargeSettings
recurringIntervalCount
number
Index of the current recurring interval.
recurringSubscriptionInterval
string
How often subscription charges will happen.
One of: DAY
, WEEK
, MONTH
, YEAR
.
signUpFee
number
Additional fee to the first payment for the subscription.
subscriptionPriceWithSignUpFee
number
Total price of the first subscription payment.
Last updated
Was this helpful?