class CybridApiBank::ExternalBankAccountsBankApi

def get_external_bank_account(external_bank_account_guid, opts = {})

Returns:
  • (ExternalBankAccountBankModel) -

Options Hash: (**opts)
  • :include_pii (Boolean) -- Include the account holder's PII in the response (requires **external_bank_accounts:pii:read** scope).
  • :include_balances (Boolean) -- Include balance information in the response. If `force_balance_refresh` is `true`, the most up to date balance will be returned. If `force_balance_refresh` is `false`, the cached balance will be returned. `balance_updated_at` in the response will provide the timestamp the balance was last updated.
  • :force_balance_refresh (Boolean) -- Force the balance on the account to be retrieved.

Parameters:
  • opts (Hash) -- the optional parameters
  • external_bank_account_guid (String) -- Identifier for the external bank account.
def get_external_bank_account(external_bank_account_guid, opts = {})
  data, _status_code, _headers = get_external_bank_account_with_http_info(external_bank_account_guid, opts)
  data
end