# Create Product Crea un nuevo producto. Envía máximo 3 opciones. Ejemplo de options: json "options": [ { "name": "Talla", "values": ["SM", "LG", "XL", "MD"] }, { "name": "Color", "values": ["Red", "Blue"] } ] Para las variantes, combina los valores de las opciones. Ejemplo de variants: json "variants": [ { "price": 12, "wholesale_price": 10, "sku": "VAR-001", "option1": "SM", "option2": "Red" }, { "price": 14, "wholesale_price": 10, "sku": "VAR-002", "option1": "LG", "option2": "Red" }, { "price": 25, "wholesale_price": 13, "sku": "VAR-003", "option1": "XL", "option2": "Blue" } ] Endpoint: POST /api/v1/products Version: 1.0.0 Security: api-key ## Request fields (application/json): - `product` (object) - `product.title` (string) - `product.description` (string) - `product.sku` (string) - `product.quantity` (integer) - `product.active` (boolean) - `product.price` (number) - `product.subcategory_id` (string) - `product.image_urls` (array) - `product.options` (array) - `product.options.name` (string) - `product.options.values` (array) - `product.variants` (array) - `product.variants.wholesale_price` (number) - `product.variants.image` (string) - `product.variants.variant_url` (string) - `product.variants.option1` (string) - `product.variants.option2` (string) - `product.variants.option3` (string) ## Response 400 fields