up_get_account
Retrieve account details including current balance and account information using the account's unique identifier. Access specific banking account data through the Up Banking API integration.
Instructions
Get details for a specific account by ID, including current balance and account information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accountId | Yes | The unique identifier for the account |
Input Schema (JSON Schema)
{
"properties": {
"accountId": {
"description": "The unique identifier for the account",
"type": "string"
}
},
"required": [
"accountId"
],
"type": "object"
}