Plaid.AssetReport.remove_audit_copy

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

remove_audit_copy(audit_copy_token, config)

View Source

Specs

remove_audit_copy(String.t(), Plaid.config()) ::
  {:ok, Plaid.AssetReport.RemoveAuditCopyResponse.t()}
  | {:error, Plaid.Error.t()}

Remove an Asset Report Audit Copy.

Does a POST /asset_report/audit_copy/remove call to remove an audit copy and invalidate its audit_copy_token.

Params:

  • audit_copy_token - The token for the asset report audit copy you want to remove.

Examples

AssetReport.remove_audit_copy("a-sandbox-123xxx", client_id: "123", secret: "abc")
{:ok, %AssetReport.RemoveAuditCopyResponse{}}