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