siigo_update_invoice
Modify existing invoice records in the Siigo accounting system by providing the invoice ID and updated data fields.
Instructions
Update an existing invoice
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Invoice ID | |
invoice | Yes | Invoice data to update |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Invoice ID",
"type": "string"
},
"invoice": {
"description": "Invoice data to update",
"type": "object"
}
},
"required": [
"id",
"invoice"
],
"type": "object"
}