yodlee v0.1.0 Yodlee.Provider

Functions for providers endpoint.

Link to this section Summary

Functions

Gets provider by id

Searches providers in User session

Link to this section Types

Link to this type t()
t() :: %Yodlee.Provider{
  auth_type: String.t(),
  base_url: String.t(),
  container_names: [String.t()],
  favicon: String.t(),
  forget_password_url: String.t(),
  id: integer(),
  is_auto_refresh_enabled: boolean(),
  last_modified: String.t(),
  login_url: String.t(),
  logo: String.t(),
  name: String.t(),
  status: String.t()
}
Link to this type user_session()
user_session() :: String.t()

Link to this section Functions

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

Gets provider by id.

Link to this function search(session, params \\ %{})
search(user_session(), map()) ::
  {:ok, [Yodlee.Provider.t()]} | {:error, error()}

Searches providers in User session.

params = %{
  name: "Wells Fargo"
}