remove_budget
Delete a budget assigned to a specific category for a given month in LunchMoney, helping users manage their financial planning by removing outdated or incorrect budget allocations.
Instructions
Remove 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": {
"category_id": {
"description": "Category ID for the budget to remove",
"type": "number"
},
"start_date": {
"description": "Budget month start date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"start_date",
"category_id"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}