siigo_get_product
Retrieve product details from Siigo accounting software using the product ID to access specific product information for inventory management or sales processes.
Instructions
Get a specific product by ID
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"
}