Plaid.Item.remove

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

remove(access_token, config)

View Source

Specs

remove(String.t(), Plaid.config()) ::
  {:ok, Plaid.SimpleResponse.t()} | {:error, Plaid.Error.t()}

Removes an item.

Does a POST /item/remove call to remove an item.

Params

  • access_token - The access token associated with the item.

Examples

Item.remove("access-prod-123xxx", client_id: "123", secret: "abc")
{:ok, %Plaid.SimpleResponse{}}