EventimRemoveProductsRequest
Request model for removing products from a cart.
The cart identifier to remove products from. Must be an existing, valid cart. Required, must be greater than 0.
The cart item identifier to remove products from. Must reference an existing cart item. Required, must be greater than 0.
The product identifier to remove. Must reference a product previously allocated to this cart item. Required, must be greater than 0.
Optional event identifier to scope the removal. When provided, EventSessionId must also be provided. Must be greater than 0 if set.
Optional event session identifier to scope the removal. When provided, EventId must also be provided. Must be greater than 0 if set.
The number of products to remove from the cart item. If greater than or equal to current quantity, the cart item quantity is set to zero. Required, must be greater than 0.
{
"cartId": 0,
"cartItemId": 0,
"productId": 0,
"eventId": 0,
"eventSessionId": 0,
"quantityToRemove": 0
}