yodlee v0.1.0 Yodlee.ProviderAccount

Functions for providerAccounts endpoint.

Link to this section Summary

Functions

Deletes provider account

Gets provider account by id

Lists all provider accounts associated with User session

Link to this section Types

Link to this type t()
t() :: %Yodlee.ProviderAccount{
  aggregation_source: String.t(),
  created_date: String.t(),
  id: integer(),
  is_manual: boolean(),
  last_updated: String.t(),
  provider_id: integer(),
  refresh_info: Yodlee.Refreshinfo.t()
}
Link to this type user_session()
user_session() :: String.t()

Link to this section Functions

Link to this function delete(session, id)
delete(user_session(), String.t() | integer()) ::
  {:ok, Yodlee.ProviderAccount.t()} | {:error, error()}

Deletes provider account.

Link to this function get(session, id)
get(user_session(), String.t() | integer()) ::
  {:ok, Yodlee.ProviderAccount.t()} | {:error, error()}

Gets provider account by id.

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

Lists all provider accounts associated with User session.