siigo_update_product
Modify existing product information in Siigo accounting software by providing the product ID and updated data fields to maintain accurate inventory and financial records.
Instructions
Update an existing product
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| id | Yes | Product ID | |
| product | Yes | Product data to update | 
Input Schema (JSON Schema)
{
  "properties": {
    "id": {
      "description": "Product ID",
      "type": "string"
    },
    "product": {
      "description": "Product data to update",
      "type": "object"
    }
  },
  "required": [
    "id",
    "product"
  ],
  "type": "object"
}