Skip to content

BigCommerce - Create Product

This module allows creating products in a BigCommerce store with all their properties: name, price, SKU, description, inventory, weight, categories, and more.

  • Store Hash: Unique hash of your BigCommerce store
  • Access Token: API V3 access token
ParameterTypeRequiredDescription
credentials_idcredentialYesBigCommerce credentials
namestringYesProduct name
typeselectYesType: physical, digital
pricenumberYesProduct price
weightnumberYesProduct weight
skustringNoProduct SKU
descriptionstringNoFull description
categoriesstringNoCategory IDs separated by comma
brand_idnumberNoBrand ID
inventory_levelnumberNoStock quantity
is_visiblebooleanNoVisible in store (default: true)
{
"success": true,
"product": {...},
"product_id": 456,
"sku": "PROD-001",
"message": "Product 456 created successfully"
}
{
"name": "Camiseta Azul",
"type": "physical",
"price": 29.99,
"weight": 0.5,
"sku": "CAM-AZUL-001"
}
{
"name": "Zapatillas Running",
"type": "physical",
"price": 89.99,
"weight": 0.8,
"sku": "ZAP-RUN-001",
"categories": "23,45",
"brand_id": 12,
"inventory_level": 100,
"description": "Zapatillas para running profesional"
}
{
"name": "Ebook Marketing",
"type": "digital",
"price": 19.99,
"weight": 0,
"is_visible": true
}
  • The weight field is mandatory even if it is 0 for digital products
  • The physical type requires weight for shipping calculations
  • Categories must already exist in the store
  • The SKU must be unique across the entire store
  • Products are created as not visible by default if not specified