LogoLogo
Build appsContact API support
Discounts and tips
  • Build apps
  • Site Templates
  • API Reference
  • Changelog
Discounts and tips
  • Discounts and tips overview
  • Add discounts to the store
    • Automatic discounts (promotions)
    • Discount coupons
    • Bulk discount prices for products
    • Discounts calculated on your server
  • Add tips or surcharges to the store
    • Add tips selection to the checkout
    • Apply hidden surcharges
    • Calculate surcharges on your server
  • Customize discounts
    • Set up "Buy X - Get Y" promotions
    • Set up "Free shipping" promotions
    • Set up start and end dates for discounts
    • Limit discounts to customer groups
    • Limit discounts by products and categories
    • Limit the number of discount coupon uses

Lightspeed® 2025

On this page

Was this helpful?

  1. Add discounts to the store

Bulk discount prices for products

PreviousDiscount couponsNextDiscounts calculated on your server

Last updated 2 months ago

Was this helpful?

There is a way to set up bulk discount prices for a specific product.

Bulk discount prices for products can stack with other discount types.

Bulk discount price only works for one product and can't be customized, but it's fully automated and clearly visible to customers even on the product page:

Add bulk discount prices to a product

Make sure your app has the update_products access scope required to manage products' bulk discount prices.

Example request:

PUT /api/v3/STOREID/products/PRODUCTID HTTP/1.1
Host: app.ecwid.com
Content-Type: application/json
Authorization: Bearer secret_token

{
    "price": 100,
    "wholesalePrices": [
        {
            "quantity": 10,
            "price": 95
        },
        {
            "quantity": 50,
            "price": 90            
        }
    ]
}

To add bulk prices, change STOREID with your store ID, PRODUCTID with the internal ID of the product, and secret_token with the secret access token of your app.

The example request adds a 5% discount when the product quantity in the cart reaches 10, and a 10% discount when it reaches 50.

To add a bulk discount price, you need to know the internal product ID – items > id field value in the call.

Search products

If you don't yet have an app for Ecwid API access, start with the following .

instructions