get-month-info
Retrieve detailed budget data for a specific month, including age of money, total amounts budgeted, spent, and available. Use this to assess your financial status before making budget adjustments.
Instructions
Get detailed budget information for a single month, including age of money and total amounts budgeted, spent, and available. Call this to check the monthly budget's status before making changes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget_id | No | The ID of the budget. If not provided, the default budget will be used. | |
month | No | The month to retrieve in YYYY-MM-DD format. If not provided, all months will be listed. |
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"
},
"month": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The month to retrieve in YYYY-MM-DD format. If not provided, all months will be listed.",
"title": "Month"
}
},
"title": "GetMonthInfoInput",
"type": "object"
}