get_accounts
Retrieve all accounts associated with a specific YNAB budget to view account balances, types, and financial overview for budget management.
Instructions
Get all accounts for a budget.
Args:
budget_id: The ID of the budget (use 'last-used' for default budget)
Returns:
JSON string with list of accounts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"budget_id": {
"title": "Budget Id",
"type": "string"
}
},
"required": [
"budget_id"
],
"type": "object"
}