create_transaction_group
Group multiple transactions together in LunchMoney to organize related financial entries under a single payee, date, and category for better tracking.
Instructions
Create a transaction group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"category_id": {
"description": "Category ID for the group",
"type": "number"
},
"date": {
"description": "Date in YYYY-MM-DD format",
"type": "string"
},
"notes": {
"description": "Notes for the group",
"type": "string"
},
"payee": {
"description": "Payee name for the group",
"type": "string"
},
"tags": {
"description": "Array of tag IDs for the group",
"items": {
"type": "number"
},
"type": "array"
},
"transaction_ids": {
"description": "Array of transaction IDs to group",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"date",
"payee",
"transaction_ids"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}