yodlee v0.1.2 Yodlee.Account View Source

Functions for accounts endpoint.

Link to this section Summary

Functions

Gets account by id and container

List all accounts associated with User session

Gets all accounts associated with User session

Link to this section Types

Link to this type t() View Source
t() :: %Yodlee.Account{
  account_name: String.t(),
  account_number: String.t(),
  account_status: String.t(),
  account_type: String.t(),
  amount_due: Yodlee.Money.t(),
  balance: Yodlee.Money.t(),
  created_date: String.t(),
  due_date: String.t(),
  frequency: String.t(),
  id: integer(),
  interest_rate: float(),
  interest_rate_type: String.t(),
  last_payment_amount: Yodlee.Money.t(),
  last_payment_date: String.t(),
  last_updated: String.t(),
  maturity_date: String.t(),
  minimum_amount_due: Yodlee.Money.t(),
  original_loan_amount: Yodlee.Money.t(),
  origination_date: String.t(),
  principal_balance: Yodlee.Money.t(),
  provider_account_id: integer(),
  provider_id: String.t(),
  recurring_payment: Yodlee.Money.t(),
  refreshinfo: Yodlee.Refreshinfo.t(),
  term: String.t()
}
Link to this type user_session() View Source
user_session() :: String.t()

Link to this section Functions

Link to this function get(session, container, id) View Source
get(user_session(), String.t(), String.t() | integer()) ::
  {:ok, [Yodlee.Account.t()]} | {:error, error()}

Gets account by id and container.

Link to this function list(session) View Source
list(user_session()) :: {:ok, [Yodlee.Account.t()]} | {:error, error()}

List all accounts associated with User session.

Link to this function search(session, params) View Source
search(user_session(), map()) ::
  {:ok, [Yodlee.Account.t()]} | {:error, error()}

Gets all accounts associated with User session.

params = %{
  providerAccountId: 10502782
}