POST /asset_report/refresh
An Asset Report is an immutable snapshot of a user's assets. In order to "refresh" an Asset Report you created previously, you can use the /asset_report/refresh
endpoint to create a new Asset Report based on the old one, but with the most recent data available.
The new Asset Report will contain the same Items as the original Report, as well as the same filters applied by any call to /asset_report/filter
. By default, the new Asset Report will also use the same parameters you submitted with your original /asset_report/create
request, but the original days_requested
value and the values of any parameters in the options
object can be overridden with new values. To change these arguments, simply supply new values for them in your request to /asset_report/refresh
. Submit an empty string ("") for any previously-populated fields you would like set as empty.
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 |
---|---|---|---|
days_requested |
Integer | No |
The maximum number of days of history to include in the Asset Report. Must be an integer. If not specified, the value from the original call to |
client_id |
String | No |
Your Plaid API |
options |
Object | No |
An optional object to filter |
options.user |
Object | No |
The user object allows you to provide additional information about the user to be appended to the Asset Report. All fields are optional. The |
options.user.ssn |
String | No |
The user's Social Security Number. Required for the Fannie Mae Day 1 Certainty™ program. Format: "ddd-dd-dddd" |
options.user.middle_name |
String | No |
The user's middle name |
options.user.email |
String | No |
The user's email address. |
options.user.last_name |
String | No |
The user's last name. Required for the Fannie Mae Day 1 Certainty™ program. |
options.user.first_name |
String | No |
The user's first name. Required for the Fannie Mae Day 1 Certainty™ program. |
options.user.client_user_id |
String | No |
An identifier you determine and submit for the user. If using the Credit Dashboard, Customers should pass in the |
options.user.phone_number |
String | No |
The user's phone number, in E.164 format: +{countrycode}{number}. For example: "+14151234567". Phone numbers provided in other formats will be parsed on a best-effort basis. |
options.webhook |
String | No |
URL to which Plaid will send Assets webhooks, for example when the requested Asset Report is ready. |
options.client_report_id |
String | No |
Client-generated identifier, which can be used by lenders to track loan applications. |
asset_report_token |
String | Yes |
The |
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.