Migrate from Transactions to Plaid Consumer Report
Switch to CRA Base Report for FCRA-compliant reporting with enhanced data coverage.
This guide will walk you through how to migrate from accessing bank data with Plaid's Transactions product to generating Base Reports with Plaid's Consumer Report product.
The CRA Base Report includes account balance, account ownership, and transaction data, and is designed for use cases that require FCRA-compliant consumer reporting, such as tenant screening, income verification, and credit decisioning.
Why migrate?
While the Transactions product gives you historical transaction data, the CRA Base Report enhances this by:
- Supporting FCRA-compliant usage
- Bundling additional data (identity, balance, account metadata) in a single report
- Managing the explicit consumer consent and disclosures required for underwriting use cases in the US
If your use case involves evaluating the financial standing of US-based end users for underwriting, credit, or leasing, you should use the CRA Base Report instead of Transactions.
Prerequisites
- Update your Plaid SDK to the latest version. Minimum required versions:
- Python: 23.0.0
- Go: 26.0.0
- Java: 24.0.0
- Node: 25.0.0
- Ruby: 29.0.0
- Confirm you have access to Plaid Check products in Production. If not, request access via the Dashboard.
Changes to Plaid Link initialization
When using Plaid Check products, you must create a user before initializing Link. This allows Plaid to associate multiple Items with a single user.
Call
/user/createbefore/link/token/create- Include
consumer_report_user_identity. - All fields are required except
last_4_ssn. - Store the
user_idanduser_tokenin your database.
- Include
Update your
/link/token/createcall:- Remove the
transactionsobject (if present) from the call. - Include the
user_tokenfrom/user/create. - Replace
transactionswithcra_base_report(and any other CRA products) in theproductsarray. - Add a
cra_optionsobject withdays_requested(min 180). - Provide a
consumer_report_permissible_purpose. - (Optional) To allow multi-institution linking, set
enable_multi_item_linktotrue.
- Remove the
const request: LinkTokenCreateRequest = {
loading_sample: true
};
try {
const response = await plaidClient.linkTokenCreate(request);
const linkToken = response.data.link_token;
} catch (error) {
// handle error
}Adding Consumer Report to existing Items
To enable an existing Transactions-enabled Item for Consumer Report, call /user/create and /link/token/create as described above, but include the Item's access_token when calling /link/token/create. When Link is launched, the end user will go through the Consumer Report consent flow, and on successful completion of the flow, the Item will be enabled for Consumer Report.
Changes to post-Link integration
Update product API calls and webhook listeners
Update your webhook listener endpoints, adding listeners for Plaid Check.
Upon receiving the
CHECK_REPORT_READYwebhook, call product endpoints such as/cra/check_report/base_report/getor (if using)/cra/check_report/partner_insights/get.Upon receiving the
CHECK_REPORT_FAILEDwebhook, call/user/items/getto determine why Items are in a bad state. If appropriate, send the user through update mode to repair the Item.
If you're still using other Plaid products like Auth or Balance, continue retrieving and exchanging the public token. Otherwise, it's no longer needed.
Mapping API responses
This Google Sheet highlights the correspondences between Transactions and CRA Base Report schemas.
If you are using other Plaid Inc. products, note that the account_id returned in API responses from endpoints prefixed with /cra/ will not match the account_id returned in responses from non-CRA Plaid endpoints.
Migrating existing Items
There is no way to directly migrate an existing Transactions-enabled Item to Plaid Check. Instead, you must delete the old Item using /item/remove and prompt the user to go through the Link flow again, using a Link token that is enabled for Plaid Check.
If you are ready to migrate all Items, use /item/remove to delete the Transactions-enabled Items, and prompt your users to return to your app to re-add their accounts using the new Plaid Check-enabled flow. You can also perform this process in stages, disabling only a percentage of Items at a time.
The most conservative gradual migration strategy is to not delete the Transactions-enabled Item until it is in an unhealthy state that requires user interaction to fix (e.g. ITEM_LOGIN_REQUIRED). At that time, instead of sending the Item through update mode, delete the Item using /item/remove and prompt your users to re-add their accounts using the new Plaid-Check enabled flow.
Removing Transactions logic for existing Items
Depending on your use case and business, you may want to leave existing Transactions-enabled Items in place and perform a gradual migration, as described above. Do not remove Transactions logic unless you are no longer using any Transactions-enabled Items.
Remove handling for Transactions webhooks, including
SYNC_UPDATES_AVAILABLE,INITIAL_UPDATE,HISTORICAL_UPDATE,DEFAULT_UPDATE,RECURRING_TRANSACTIONS_UPDATERemove calls to
/transactions/endpoints such as/transactions/get,/transactions/sync, or/transactions/recurring/get, as well as any handling for transactions-specific logic, such as transactions updates and pagination.Remove handling for the
TRANSACTIONS_SYNC_MUTATION_DURING_PAGINATIONerror.If you have existing Transactions-enabled Items you will no longer be using, call
/item/removeto delete these Items so you will no longer be billed for Transactions.