list-categories
Retrieve all categories, groups, and budgeting details for a specific budget to review available funds and allocated amounts before adjusting budgets.
Instructions
List all categories, groups, and their budgeting details for a given budget. Call this before managing budgeted amounts to see what's available and what's already been allocated.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget_id | No | The ID of the budget. If not provided, the default budget will be used. |
Input Schema (JSON Schema)
{
"properties": {
"budget_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The ID of the budget. If not provided, the default budget will be used.",
"title": "Budget Id"
}
},
"title": "ListCategoriesInput",
"type": "object"
}