Update Product
update_productUpdate existing product fields by specifying only the values to change. Modify name, price, description, or tax rate using partial updates.
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 |