Plaid.AssetReport.filter

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

filter(asset_report_token, account_ids_to_exclude, config)

View Source

Specs

filter(String.t(), [String.t()], Plaid.config()) ::
  {:ok, Plaid.AssetReport.AsyncResponse.t()} | {:error, Plaid.Error.t()}

Create a new, filtered Asset Report.

Does a POST /asset_report/filter call to initiate the process of creating a new asset report with filtered accounts, based off of a previous one.

Params:

  • asset_report_token - The token for the asset report you want to refresh.
  • account_ids_to_exclude - The accounts to exclude from the original Asset Report.

Examples

AssetReport.filter("assets-sandbox-123xxx", ["123xxx"], client_id: "123", secret: "abc")
{:ok, %AssetReport.AsyncResponse{}}