Skip to content

BigCommerce - Update Product

This module allows modifying the properties of existing products in BigCommerce: price, stock, description, visibility, categories, and more. It can identify the product by ID or SKU.

  • Store Hash: Unique hash of your BigCommerce store
  • Access Token: API V3 access token
ParameterTypeRequiredDescription
credentials_idcredentialYesBigCommerce credentials
product_idnumberYes*Product ID to update
skustringYes*Product SKU (alternative to ID)
namestringNoNew name
pricenumberNoNew price
descriptionstringNoNew description
weightnumberNoNew weight
inventory_levelnumberNoNew stock quantity
categoriesstringNoNew category IDs
brand_idnumberNoNew brand ID
is_visiblebooleanNoChange visibility

*Either product_id or sku is required

{
"success": true,
"product": {...},
"product_id": 456,
"fields_updated": ["price", "inventory_level"],
"message": "Product 456 updated successfully"
}
{
"product_id": 456,
"price": 34.99
}
{
"sku": "CAM-AZUL-001",
"inventory_level": 50
}
{
"product_id": 456,
"name": "Camiseta Azul Premium",
"price": 39.99,
"description": "New improved description",
"is_visible": true
}
{
"sku": "PROD-TEMP",
"is_visible": false
}
  • If SKU is used, the product is first searched to obtain the ID
  • Only the provided fields are updated
  • The fields_updated field indicates which fields were modified
  • Updating inventory_level directly modifies the stock
  • For variants, use the specific variants module