Plaid.Identity.get

You're seeing just the function get, go back to Plaid.Identity module for more information.
Link to this function

get(access_token, options \\ %{}, config)

View Source

Specs

get(String.t(), options, Plaid.config()) ::
  {:ok, Plaid.Identity.GetResponse.t()} | {:error, Plaid.Error.t()}
when options: %{optional(:account_ids) => [String.t()]}

Get information about all available accounts.

Does a POST /identity/get call to retrieve account information, along with the owners info for each account associated with an access_token's item.

Params:

  • access_token - Token to fetch identity for.

Options:

  • :account_ids - Specific account ids to fetch identity for.

Examples

Identity.get("access-sandbox-123xxx", client_id: "123", secret: "abc")
{:ok, %Identity.GetResponse{}}