Catalog - Product modifiers
The Catalog API manages products, categories, brands, bulk pricing rules, and more. To learn more about catalog resources, see the Catalog Overview.
Product modifiers represent choices that the shopper can make to change how the merchant customizes or adds on to the product. Examples include shipping insurance, monograms, custom inseam length, and color selections for unfinished products.
Modifier values do not change which item is picked in a warehouse, but they change what happens to that item between the warehouse shelf and the shopper taking possession of their order.
Critically, modifier values do not change which product variant is fulfilled. You cannot track inventory for combinations of modifier values.
You can add an adjuster to a modifier value to override the underlying product variant's properties, such as price, weight, and shipping rules. Not all modifier types are compatible with adjusters.
To learn more about authenticating Catalog endpoints, locate the Authentication section at the top of each endpoint, then click Show Details.
Resources
Webhooks
Learn more about Product webhook events.
Additional Catalog endpoints
Get all product modifiers
GET https://api.bigcommerce.com/stores/{store_hash}/v3/catalog/products/{product_id}/modifiersRequest
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- product_id in path - integerrequired
The ID of the product to which the resource belongs.
- include_fields in query - arrayFields to include, in a comma-separated list. The ID and the specified fields will be returned.Type: array[string]
- exclude_fields in query - arrayFields to exclude, in a comma-separated list. The specified fields will be excluded from a response. The ID cannot be excluded.Type: array[string]
- page in query - integer
Specifies the page number in a limited (paginated) list of products.
- limit in query with default of 50 - integer
Controls the number of items per page in a limited (paginated) list of products.
example
Response
Body
dataarray[object]
example
Create a product modifier
POST https://api.bigcommerce.com/stores/{store_hash}/v3/catalog/products/{product_id}/modifiersRequest
Creates a product modifier.
Required Fields
required
display_name
type
Read-Only Fields
id
Notes It takes two separate requests to create a new checkbox modifier with option values. Perform a request to create a modifier, then perform a second request to update option values.
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- product_id in path - integerrequired
The ID of the product to which the resource belongs.
- Content-Type in header with default of application/json - stringrequiredThe MIME type of the request body.
Body
typestring
requiredBigCommerce API, which determines how it will display on the storefront. Acceptable values:
date
,checkbox
,file
,text
,multi_line_text
,numbers_only_text
,radio_buttons
,rectangles
,dropdown
,product_list
,product_list_with_images
,swatch
. Required in a /POST.Allowed: date | checkbox | file | text | multi_line_text | numbers_only_text | radio_buttons | rectangles | dropdown | product_list | product_list_with_images | swatch
requiredboolean
requiredWhether or not this modifier is required at checkout. Required in a /POST.
sort_orderinteger
The order the modifiers display on the product detail page.configobject
The values for option config can vary based on the Modifier created.option_valuesarray[object]
display_namestring
requiredThe name of the option shown on the storefront.
example
Response
Body
dataobject
example
Get a product modifier
GET https://api.bigcommerce.com/stores/{store_hash}/v3/catalog/products/{product_id}/modifiers/{modifier_id}Request
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- product_id in path - integerrequired
The ID of the product to which the resource belongs.
- modifier_id in path - integerrequired
The ID of the product modifier.
- include_fields in query - arrayFields to include, in a comma-separated list. The ID and the specified fields will be returned.Type: array[string]
- exclude_fields in query - arrayFields to exclude, in a comma-separated list. The specified fields will be excluded from a response. The ID cannot be excluded.Type: array[string]
example
Response
Body
dataobject
Product modifier
example
Update a product modifier
PUT https://api.bigcommerce.com/stores/{store_hash}/v3/catalog/products/{product_id}/modifiers/{modifier_id}Request
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- product_id in path - integerrequired
The ID of the product to which the resource belongs.
- modifier_id in path - integerrequired
The ID of the product modifier.
- Content-Type in header with default of application/json - stringrequiredThe MIME type of the request body.
Body
typestring
requiredBigCommerce API, which determines how it will display on the storefront. Acceptable values:
date
,checkbox
,file
,text
,multi_line_text
,numbers_only_text
,radio_buttons
,rectangles
,dropdown
,product_list
,product_list_with_images
,swatch
. Required in a /POST.Allowed: date | checkbox | file | text | multi_line_text | numbers_only_text | radio_buttons | rectangles | dropdown | product_list | product_list_with_images | swatch
requiredboolean
requiredWhether or not this modifier is required at checkout. Required in a /POST.
sort_orderinteger
The order the modifiers display on the product detail page.configobject
The values for option config can vary based on the Modifier created.option_valuesarray[object]
Part of Modifier Value Responsedisplay_namestring
The name of the option shown on the storefront.
Example: Donation
example
Response
Body
dataobject
Product modifier
example
Delete a product modifier
DELETE https://api.bigcommerce.com/stores/{store_hash}/v3/catalog/products/{product_id}/modifiers/{modifier_id}Request
Authentication
- X-Auth-Token in header
Parameters
- store_hash in path - string
- Accept in header with default of application/json - stringrequiredThe MIME type of the response body.
- product_id in path - integerrequired
The ID of the product to which the resource belongs.
- modifier_id in path - integerrequired
The ID of the product modifier.
example
Response
See something you can improve? Edit this file on GitHub