upsert_budget
Create or update monthly budget amounts for specific categories in LunchMoney to manage personal finances and track spending against targets.
Instructions
Create or update a budget for a specific category and month
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"amount": {
"description": "Budget amount",
"type": "number"
},
"category_id": {
"description": "Category ID for the budget",
"type": "number"
},
"currency": {
"description": "Currency for budget (defaults to primary currency)",
"type": "string"
},
"start_date": {
"description": "Budget month start date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"start_date",
"category_id",
"amount"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}