update_category_budget
Modify the budgeted amount for a YNAB category in a specific month to adjust your financial planning and maintain accurate budget tracking.
Instructions
Update the budgeted amount for a category in a specific month.
Args:
budget_id: The ID of the budget (use 'last-used' for default budget)
month: Month in YYYY-MM-DD format (e.g., 2025-01-01 for January 2025)
category_id: The category ID to update
budgeted: The budgeted amount to set
Returns:
JSON string with the updated category
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget_id | Yes | ||
budgeted | Yes | ||
category_id | Yes | ||
month | Yes |
Input Schema (JSON Schema)
{
"properties": {
"budget_id": {
"title": "Budget Id",
"type": "string"
},
"budgeted": {
"title": "Budgeted",
"type": "number"
},
"category_id": {
"title": "Category Id",
"type": "string"
},
"month": {
"title": "Month",
"type": "string"
}
},
"required": [
"budget_id",
"month",
"category_id",
"budgeted"
],
"type": "object"
}