Dynamic Prices
To implement sale prices for countries for which Global-e converts the prices, you must pass as the sale price through theOriginalSalePrice field in the getCheckoutCartInfo response in your domestic currency.
Example:
"OriginalListPrice": 46,
"OriginalSalePrice": 25
Sample:
Fixed Prices
To implement sale prices that are fixed, you must pass the fixed prices in theSalePrice, OriginalPrice fields, and set isFIxedPrice to true in the getCheckoutCartInfo response in the local currency.
Example:
"IsFixedPrice": true,
"SalePrice": 120,
"ListPrice": 120,
The OriginaListPrice and OriginalSalePrice fields are ignored if they are passed.
Sample:
Checkout Discount
Discounts are passed to the Global-e checkout via thegetCheckoutCartInfo’s discountsList object.
Product-level Discounts
To apply a discount to a product, assign the same value to thediscountsList.ProductCartItemId as for the productsList.CartItemId
Cart Level Discounts
Implement Cart-level discounts as you have done for product-level discounts but omit theProductCartItemId for it to be considered a cart-level discount.
For the different types of calculation modes, see Discount.

