module SageoneSdk::Client::BankAccounts
Represents the bank accounts for the authenticated user's business.
Public Instance Methods
bank_account(id, options = {})
click to toggle source
@return [object] Returns the bank account with the given id.
# File lib/sageone_sdk/client/bank_accounts.rb, line 13 def bank_account(id, options = {}) get "bank_accounts/#{id}", options end
bank_accounts(options = {})
click to toggle source
@return [object] Returns all bank accounts for the authenticated user's business.
# File lib/sageone_sdk/client/bank_accounts.rb, line 8 def bank_accounts(options = {}) paginate "bank_accounts", options end