up_list_accounts
Retrieve all your banking accounts with balances, account types, and ownership details. Filter by account type or ownership to view specific account information.
Instructions
List all accounts for the authenticated user. Returns account balances, types (SAVER, TRANSACTIONAL, HOME_LOAN), and ownership information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accountType | No | Filter by account type | |
| ownershipType | No | Filter by ownership type |
Input Schema (JSON Schema)
{
"properties": {
"accountType": {
"description": "Filter by account type",
"enum": [
"SAVER",
"TRANSACTIONAL",
"HOME_LOAN"
],
"type": "string"
},
"ownershipType": {
"description": "Filter by ownership type",
"enum": [
"INDIVIDUAL",
"JOINT"
],
"type": "string"
}
},
"type": "object"
}