unsplit_transactions
Remove transactions from split groups in LunchMoney, optionally deleting parent transactions to simplify financial record management.
Instructions
Remove one or more transactions from a split
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"parent_ids": {
"description": "Array of parent transaction IDs to unsplit",
"items": {
"type": "number"
},
"type": "array"
},
"remove_parents": {
"description": "If true, delete parent transactions",
"type": "boolean"
}
},
"required": [
"parent_ids"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}