POST /asset_report/filter
By default, an Asset Report will contain all of the accounts on a given Item. In some cases, you may not want the Asset Report to contain all accounts. For example, you might have the end user choose which accounts are relevant in Link using the Account Select view, which you can enable in the dashboard. Or, you might always exclude certain account types or subtypes, which you can identify by using the /accounts/get
endpoint. To narrow an Asset Report to only a subset of accounts, use the /asset_report/filter
endpoint.
To exclude certain Accounts from an Asset Report, first use the /asset_report/create
endpoint to create the report, then send the asset_report_token
along with a list of account_ids
to exclude to the /asset_report/filter
endpoint, to create a new Asset Report which contains only a subset of the original Asset Report's data.
Because Asset Reports are immutable, calling /asset_report/filter
does not alter the original Asset Report in any way; rather, /asset_report/filter
creates a new Asset Report with a new token and id. Asset Reports created via /asset_report/filter
do not contain new Asset data, and are not billed.
Plaid will fire a PRODUCT_READY
webhook once generation of the filtered Asset Report has completed.
Servers
- https://production.plaid.com
- https://sandbox.plaid.com
Request headers
Name | Type | Required | Description |
---|---|---|---|
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/json" |
Request body fields
Name | Type | Required | Description |
---|---|---|---|
client_id |
String | No |
Your Plaid API |
asset_report_token |
String | Yes |
A token that can be provided to endpoints such as |
account_ids_to_exclude[] |
Array | Yes |
The accounts to exclude from the Asset Report, identified by |
secret |
String | No |
Your Plaid API |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.