get_account_balance
Retrieve the current balance in dollars for a specific YNAB account by providing the account ID, enabling users to quickly access financial data for budgeting and planning.
Instructions
Get the current balance of a YNAB account (in dollars).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
}
},
"required": [
"account_id"
],
"title": "get_account_balanceArguments",
"type": "object"
}