Update Product
update_productUpdate an existing product with partial changes. Modify fields like name, price, tax rate, or description without affecting other data.
Instructions
Update an existing product using PATCH semantics. Only the provided fields will be changed. Example: id='abc123', unitPrice=2000, taxRate=21 / Actualiza un producto existente. Solo se modifican los campos proporcionados.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Product ID / ID del producto | |
| name | No | Name / Nombre | |
| taxRate | No | Tax rate % / IVA % | |
| unitPrice | No | Unit price / Precio unitario | |
| description | No | Description / Descripcion |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| name | Yes | ||
| taxRate | No | ||
| createdAt | No | ||
| unitPrice | Yes | ||
| updatedAt | No | ||
| description | No |