action pocketsmith_get_transaction_accounts_id { label: "Get transaction account" description: "Gets a transaction account by its ID." provider: pocketsmith method: GET path: "/transaction_accounts/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { created_at: { type: "string" } currency_code: { type: "string" description: "The currency that the account is in. This is determined by the account that the transaction account belongs to." } current_balance: { type: "number" } current_balance_date: { type: "string" } current_balance_exchange_rate: { type: "number" description: "The exchange rate between the transaction account's currency and the user's base currency, when different. If the currencies are the same, null is returned." } current_balance_in_base_currency: { type: "number" description: "The current balance of the transaction account in the user's base currency." } id: { type: "integer" } institution: { type: "object" properties: { created_at: { type: "string" description: "When the institution was created." } currency_code: { type: "string" description: "The currency code of the institution." } id: { type: "integer" description: "The unique identifier of the institution." } title: { type: "string" description: "The title of the institution." } updated_at: { type: "string" description: "When the institution was last updated." } } } name: { type: "string" } number: { type: "string" } safe_balance: { type: "number" description: "The current safe balance, if safe balance is activated and available for the transaction account. If safe balance is not available, then null is returned." } safe_balance_in_base_currency: { type: "number" description: "The current safe balance in the user's base currency, if safe balance is activated and available for the transaction account. If safe balance is not available, then null is returned." } starting_balance: { type: "number" } starting_balance_date: { type: "string" } type: { type: "string" description: "The type of the transaction account." enum: ["bank", "credits", "cash", "stocks", "mortgage", "loans", "vehicle", "property", "insurance", "other_asset", "other_liability"] } updated_at: { type: "string" } } } }