class Myfinance::Resources::Account

A wrapper to Myfinance accounts API

API

Documentation: app.myfinance.com.br/docs/api/multiple_accounts

Public Instance Methods

find_all() click to toggle source

List all account of the user

API

Method: GET /accounts

Documentation: app.myfinance.com.br/docs/api/multiple_accounts#get_index

# File lib/myfinance/resources/account.rb, line 18
def find_all
  http.get("/accounts", body: {}) do |response|
    respond_with_collection(response)
  end
end