Skip to content

Cart

Field Type Required Description
messages array[Message]
cartItems array[CartItem] yes
currency Currency yes one of: EUR, CHF, USD, RON, PLN, AUD, GBP, CAD, SEK, DKK, NOK
totals array[CartTotal] yes
text CartText Additional texts for the current cart, like legal text. It can contain HTML content.
flags CartFlags yes Additional information about the cart.
{
"messages": [
{
"type": "error",
"message": "Some error occurred.",
"code": "EUNKNOWN"
}
],
"cartItems": [
{
"id": "a84de7d7-2b7d-4aa8-a64d-9558ca791b86",
"quantity": 5,
"type": "product",
"messages": []
}
],
"currency": "USD",
"totals": [
{}
],
"text": {
"legal": "By placing your order you agree to our <b><u>Privacy Policy</u></b>, our <b><u>Terms and Conditions</u></b> as well as our <b><u>Cancellation Policy</u></b>."
},
"flags": {
"taxIncluded": true,
"orderable": true,
"coupons": true
}
}