ShoppingCart is a JSON Structure definition published by Mindbody, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-structure/public-api-v6-shopping-cart-structure.json",
"name": "ShoppingCart",
"description": "Implementation of the 'ShoppingCart' model. Represents a shopping cart.",
"type": "object",
"properties": {
"Id": {
"type": "string",
"description": "The shopping cart ID.",
"example": "example-value"
},
"CartItems": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CartItem"
},
"description": "Contains information about the items in the shopping cart.",
"example": [
{}
]
},
"SubTotal": {
"type": "double",
"description": "The cart\u2019s total cost before taxes and discounts were applied.",
"example": 49.99
},
"DiscountTotal": {
"type": "double",
"description": "The monetary amount removed from the cart\u2019s total cost by applied discounts.",
"example": 49.99
},
"TaxTotal": {
"type": "double",
"description": "The monetary amount paid in taxes, included in the cart\u2019s `GrandTotal`.",
"example": 49.99
},
"GrandTotal": {
"type": "double",
"description": "The cart\u2019s total cost, including taxes and discounts.",
"example": 49.99
},
"Transactions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TransactionResponse"
},
"description": "Contains information returned from the first call to CheckoutShoppingCart.",
"example": [
{}
]
},
"SaleId": {
"type": "int32",
"description": "The ID of the sale associated with the shopping cart.",
"example": 123456
}
}
}
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.