EventimRemoveProductsResponse
Represents the response after removing products from a cart item, containing the updated cart item details with remaining quantity and pricing.
The cart identifier.
cartItemDetail objectrequired
Represents a product item in the cart, including quantity, price breakdown, and optional event/session scope.
Cart item identifier.
Product identifier.
Optional event identifier. Null when the product is not scoped to a specific event.
Optional event session identifier. Null when the product is not scoped to a specific session.
Number of products allocated in this cart item.
Base price amount for the product per unit.
Total fees amount per unit.
feesDetails object[]nullable
Breakdown of fees by amount column.
Column identifier matching the amount label definition.
Amount value for this component (e.g., base price, tax, fee).
{
"cartId": 0,
"cartItemDetail": {
"cartItemId": 0,
"productId": 0,
"eventId": 0,
"eventSessionId": 0,
"quantity": 0,
"amount": 0,
"fees": 0,
"feesDetails": [
{
"colId": 0,
"amount": 0
}
]
}
}