siigo_create_invoice
Generate invoices in Siigo accounting software by providing customer details, items, payment methods, and required document information.
Instructions
Create a new invoice
Input Schema
Name | Required | Description | Default |
---|---|---|---|
invoice | Yes | Invoice data |
Input Schema (JSON Schema)
{
"properties": {
"invoice": {
"description": "Invoice data",
"properties": {
"customer": {
"description": "Customer information",
"type": "object"
},
"date": {
"description": "Invoice date (YYYY-MM-DD)",
"type": "string"
},
"document": {
"properties": {
"id": {
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
},
"items": {
"description": "Invoice items",
"items": {
"type": "object"
},
"type": "array"
},
"payments": {
"description": "Payment methods",
"items": {
"type": "object"
},
"type": "array"
},
"seller": {
"description": "Seller ID",
"type": "number"
}
},
"required": [
"document",
"date",
"customer",
"seller",
"items",
"payments"
],
"type": "object"
}
},
"required": [
"invoice"
],
"type": "object"
}