CheckoutUpsellItem Data Type

Class that represents an upsell item offered during checkout.

Only the fields a caller controls are present. The sales price, VAT and article number are resolved server side from the skuId and must not be supplied, since caller-provided values would be discarded.

Properties
name data type description
skuId number The stock keeping unit to offer. Must be an active and published sku with a price in the checkout country.
description string The description to show for the item. Truncated if longer than the payment provider allows.
quantity number The number of items to offer. Treated as 1 when not greater than zero.
imageUrl string Absolute HTTPS URL to the product image. Required.

Example

{
  "skuId" : 12345,
  "description" : "...",
  "quantity" : 12345,
  "imageUrl" : "..."
}