Bulk Pricing Rules

Plan: Developer Foundations

Lesson 13 of 21 · 15 min

Now, let’s discuss ways that we can help BigCommerce merchants when they sell large amounts of products.

So what are bulk pricing rules?

They are rules that offer price discounts based on quantity breaks. Bulk pricing rules are intended for merchants who want to offer wholesale discounts for buying in bulk. They apply once products are added to cart, but are displayed as a callout on the storefront to let shoppers know how they can save. Bulk pricing rules in the catalog are on the product. Even if several different variants of the product are in the cart, bulk pricing works as long as the total quantity of those variants meet one of the quantity breaks.

GET All Bulk Pricing Rules

GET /catalog/products/{product_id}/bulk-pricing-rules

Returns a list of bulk pricing rules.

Create a Bulk Pricing Rule

POST /catalog/products/{product_id}/bulk-pricing-rules

Creates a bulk pricing rule.

Required Fields

  • quantity_min
  • quantity_max
  • type
  • amount

Example Request: Create a Bulk Pricing Rule

Example Response: Create a Bulk Pricing Rule

Update a Bulk Pricing Rule

PUT /catalog/products/{product_id}/bulk-pricing-rules/{bulk_pricing_rule_id}

Updates a bulk pricing rule.

This endpoint can also be used to GET and/or DELETE a bulk pricing rule.

Resources: