Cart Currency
Update Cart Currency
POST https://yourstore.example.com/api/storefront/carts/{cartId}/currencyRequest
Update currency of the Cart. Promotions and gift certificates that don't apply to the new currency will be removed from your cart. You cannot update the cart currency if the draft order cart or the cart contains a manual discount.
Parameters
- store_domain in path - string
- cartId in path - stringrequiredThis cartʼs unique ID.
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- Content-Type in header with default of application/json - stringrequiredThe MIME type of the request body.
- include in query - array
To return product options add one of the following include:
lineItems.physicalItems.options
: The Cart returns an abbreviated result. Use this to return physical items product options. Can also be used in a /POST to have the extended Cart object return.lineItems.digitalItems.options
: The Cart returns an abbreviated result. Use this to return digital items product options. Can also be used in a /POST to have the extended Cart object return.lineItems.digitalItems.options,lineItems.physicalItems.options
: The Cart returns an abbreviated result. Use this to return digital and physical options. Can also be used in a /POST to have the extended Cart object return.Type: array[string]Allowed: lineItems.physicalItems.options | lineItems.digitalItems.options
Body
currencyCodestring
requiredcurrency code
example
Response
Body
idstring
Cart ID, provided after creating a cart with a POST.customerIdinteger
ID of the customer to which the cart belongs.emailstring
The cart's email. This is the same email that is used in the billing addresscurrencyobject
This will always be the same between cart and checkout.isTaxIncludedboolean
Whether this item is taxable.baseAmountnumber
Cost of cart’s contents, before applying discounts.discountAmountnumber
Order based discounted amount only - Coupon discounts and product based discounts are excluded.cartAmountnumber
Sum of line-items amounts, minus cart-level discounts and coupons. This amount includes taxes (where applicable).couponsarray[object]
discountsarray[object]
lineItemsobject
createdTimestring
Time when the cart was created.updatedTimestring
Time when the cart was last updated.localestring
Locale of the cart.versioninteger
The current version of the cart increments with each successful update. You can use it to enable optimistic concurrency control for subsequent updates.Example: 1