yodlee v0.1.2 Yodlee.Provider View Source

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() View Source
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() View Source
user_session() :: String.t()

Link to this section Functions

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

Gets provider by id.

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

Searches providers in User session.

params = %{
  name: "Wells Fargo"
}