Skip to content

Tiendanube - Create Product

This module allows creating products in a Tiendanube store with their basic properties, initial variant (price, stock, SKU), images, and categories.

  • Store ID: Your store ID
  • Access Token: OAuth2 access token
ParameterTypeRequiredDescription
credentials_idcredentialYesTiendanube credentials
namestringYesProduct name
descriptionstringNoProduct description
pricenumberNoProduct price
stocknumberNoStock quantity
skustringNoProduct SKU
categoriesstringNoCategory IDs separated by comma
brandstringNoProduct brand
weightnumberNoWeight in kg
barcodestringNoBarcode (EAN/UPC)
imagesstringNoImage URLs separated by comma
publishedbooleanNoPublish immediately
free_shippingbooleanNoEnable free shipping
languageselectNoLanguage (es/pt)
{
"success": true,
"product": {...},
"product_id": 12345678,
"variants": [...],
"message": "Product 12345678 created successfully"
}
{
"name": "Camiseta Basica",
"price": 1500,
"stock": 100,
"sku": "CAM-001"
}
{
"name": "Zapatillas Running",
"description": "Zapatillas deportivas para running",
"price": 8500,
"stock": 50,
"sku": "ZAP-RUN-001",
"categories": "123,456",
"brand": "Nike",
"weight": 0.8,
"barcode": "7798123456789",
"images": "https://ejemplo.com/img1.jpg,https://ejemplo.com/img2.jpg",
"published": true,
"free_shipping": false
}
{
"name": "Camiseta Basica",
"price": 79.90,
"language": "pt"
}
  • The product is created with a default variant
  • Prices must be in the store’s currency
  • Weight is used for shipping calculations
  • Images are automatically downloaded from the provided URLs
  • If published: false, the product is saved as a draft