move_money_between_categories
Moves budgeted money from one category to another in the same month, reducing the source and increasing the destination to cover a specific expense.
Instructions
Moves budgeted money from one category to another within the same month — e.g. moving $50 from Child Support into Haircuts to cover a specific expense. Reduces the source category's assigned amount and increases the destination's by the same amount. Look up category_id values with list_categories first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| month | No | 'current' for this month, or a specific month as YYYY-MM-01. | current |
| amount | Yes | The dollar amount to move, e.g. 50.00. Always positive. | |
| budget_id | No | The budget ID, or 'last-used' for the most recently used budget. | last-used |
| to_category_id | Yes | The category to move money into. | |
| from_category_id | Yes | The category to move money out of. |