Holds a different number of units of an extra already on the cart, up or down from the number held now, and returns the cart repriced. The rest of the cart is untouched — the customer keeps the same hold and the same expiry.
- `itemId` is the `id` of the line on the cart response, not an inventory item ID. Two items of the same extra at different price options are separate lines with ids of their own
- `quantity` is the number to end up holding and is at least 1. To drop the item, send `DELETE /carts/{cartId}/items/{itemId}`
- Only an `Extra` item can be changed. A cart is created from its admission items; one that should hold none is released with `DELETE /carts/{cartId}`
Request
This endpoint expects an object.
quantityintegerRequired>=1
Number of units of this item to hold, up or down from the number held now. At least 1: to drop the item, send DELETE /carts/{cartId}/items/{itemId} instead.
Response
Cart repriced for the new quantity.
expiresAtstring
UTC timestamp when the cart hold expires and inventory is released. Clients should display a countdown timer and warn users before expiration.
itemslist of objects
Items currently in the cart (held inventory). Each item’s priceOption carries the itemized fees[] disclosure. Protection and credits are NOT items — see receiptLines.
receiptLineslist of objects
Server-ordered display lines for receipt rendering. Iterate in sequence. Always includes SubtotalLine. Conditionally: VoucherLine, ProtectionLine, CreditLine. Fees are never a receipt line — they are disclosed per item on priceOption.fees.
totalobject
Monetary amount in minor units (cents for USD). Never uses floating point to avoid precision errors.
protectionobjectOptional
Protection covering all items. Null if not added.
optionsobjectOptional
Options that can be applied to this cart. Each key is present only when that option is available.
voucherobjectOptional
A promo code applied to a cart.
totalTaxesobjectOptional
Monetary amount in minor units (cents for USD). Never uses floating point to avoid precision errors.