Plaid.AssetReport.get

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

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

View Source

Specs

get(String.t(), options, Plaid.config()) ::
  {:ok, Plaid.AssetReport.GetResponse.t()} | {:error, Plaid.Error.t()}
when options: %{optional(:include_insights) => boolean()}

Get an asset report.

Does a POST /asset_report/get call to fetch an asset report.

Params:

  • asset_report_token - The asset report token from the create_report response.

Options:

  • :include_insights - Whether we should retrieve the report as an "Assets + Insights" report.

Examples

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