Plaid.Item.get

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

get(access_token, config)

View Source

Specs

get(String.t(), Plaid.config()) ::
  {:ok, Plaid.Item.GetResponse.t()} | {:error, Plaid.Error.t()}

Get information about an item.

Does a POST /item/get call which returns information about an item and its status.

Params

  • access_token - The access token associated with the item.

Examples

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