siigo_create_product
Create new products in Siigo accounting software by providing product code, name, account group, and other product details for inventory and financial management.
Instructions
Create a new product
Input Schema
Name | Required | Description | Default |
---|---|---|---|
product | Yes | Product data |
Input Schema (JSON Schema)
{
"properties": {
"product": {
"description": "Product data",
"properties": {
"account_group": {
"description": "Account group ID",
"type": "number"
},
"active": {
"type": "boolean"
},
"code": {
"description": "Product code",
"type": "string"
},
"description": {
"type": "string"
},
"name": {
"description": "Product name",
"type": "string"
},
"reference": {
"type": "string"
},
"stock_control": {
"type": "boolean"
},
"tax_classification": {
"enum": [
"Taxed",
"Exempt",
"Excluded"
],
"type": "string"
},
"tax_included": {
"type": "boolean"
},
"type": {
"enum": [
"Product",
"Service",
"ConsumerGood"
],
"type": "string"
},
"unit": {
"type": "string"
},
"unit_label": {
"type": "string"
}
},
"required": [
"code",
"name",
"account_group"
],
"type": "object"
}
},
"required": [
"product"
],
"type": "object"
}