siigo_delete_product
Remove a product from the Siigo accounting system by specifying its unique identifier to maintain accurate inventory and financial records.
Instructions
Delete a product
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| id | Yes | Product ID | 
Input Schema (JSON Schema)
{
  "properties": {
    "id": {
      "description": "Product ID",
      "type": "string"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}