Tiendanube - Create Product
Description
Section titled “Description”This module allows creating products in a Tiendanube store with their basic properties, initial variant (price, stock, SKU), images, and categories.
Configuration
Section titled “Configuration”Required Credentials
Section titled “Required Credentials”- Store ID: Your store ID
- Access Token: OAuth2 access token
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credential | Yes | Tiendanube credentials |
| name | string | Yes | Product name |
| description | string | No | Product description |
| price | number | No | Product price |
| stock | number | No | Stock quantity |
| sku | string | No | Product SKU |
| categories | string | No | Category IDs separated by comma |
| brand | string | No | Product brand |
| weight | number | No | Weight in kg |
| barcode | string | No | Barcode (EAN/UPC) |
| images | string | No | Image URLs separated by comma |
| published | boolean | No | Publish immediately |
| free_shipping | boolean | No | Enable free shipping |
| language | select | No | Language (es/pt) |
Output
Section titled “Output”{ "success": true, "product": {...}, "product_id": 12345678, "variants": [...], "message": "Product 12345678 created successfully"}Usage Example
Section titled “Usage Example”Create simple product
Section titled “Create simple product”{ "name": "Camiseta Basica", "price": 1500, "stock": 100, "sku": "CAM-001"}Create complete product
Section titled “Create complete product”{ "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}Create product for Brazil
Section titled “Create product for Brazil”{ "name": "Camiseta Basica", "price": 79.90, "language": "pt"}API Used
Section titled “API Used”- Endpoint:
POST /v1/{store_id}/products - Documentation: Tiendanube Products API
- 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
Related Nodes
Section titled “Related Nodes”- TiendanubeGetProducts - Get existing products
- TiendanubeUpdateProduct - Update product data
- TiendanubeGetOrders - Get orders that include products