Adding Bank Accounts with Plaid

Learn how to add bank accounts to Finix with Plaid


Plaid Bank Accounts

Finix and Plaid have partnered to let you add your customers' bank accounts to Finix's platform seamlessly and securely. Plaid instantly verifies bank account existence and ownership, providing a fast and secure way to board your customers onto Finix.

Finix offers multiple ways to add bank accounts with Plaid:

  • Add bank accounts with an existing Plaid Account
  • Use Finix's Hosted Onboarding Forms for sellers, which have Plaid Link embedded by default

Example Use Cases

You can use Finix payment_instruments connected and verified with Plaid for:

This guide explains how Plaid fits into those Finix use cases. Once you have a specific use case in mind, please refer to its respective guide to understand its full process (for example, how to onboard a seller).

Add Bank Accounts with an Existing Plaid Account

Note

  • This section of the guide is for Finix customers who have existing Plaid accounts and want to use Finix for one of the payments use cases above.
  • If you do not have a Plaid account and would like a referral to Plaid, please email sales@finix.com . A Finix Sales Representative will assist you.

Step 1: Embed Plaid Link Into Your Application

The first step is embedding Plaid Link into your application. Link is a client-side experience that lets your customers connect their bank accounts securely and seamlessly through Plaid. After Link, you can use your customers' bank account connections to create Plaid processor_tokens and, ultimately, Finix payment_instruments.

To guide your integration, we recommend familiarizing yourself with Plaid's guide to the Plaid + Finix integration. Plaid's guide has information on how to embed Plaid Link into your application and create Plaid processor_tokens.

Creating the Plaid Link Token
  • Finix uses Plaid's Auth and Identity endpoints to tokenize Payment Instruments from Plaid tokens.
  • You must include both auth and identity in the Plaid Link Token products array.

Step 2: Create a Plaid Processor Token for the Finix Processor

With Plaid Link embedded into your application, you can exchange your customers' Plaid access_tokens for processor_tokens with processor: finix. Finix uses processor_tokens to get and save your customers' bank account details in the next step.

Copy
Copied
curl https://sandbox.plaid.com/processor/token/create \
  -H 'Content-Type: application/json' \
  -X POST \
  -d '{
    "client_id": "${PLAID_CLIENT_ID}",
    "secret": "${PLAID_SECRET}",
    "access_token": "${ACCESS_TOKEN}",
    "account_id": "${ACCOUNT_ID}",
    "processor": "finix"
  }'

A successful response will have a Plaid processor_token:

Copy
Copied
{
  "processor_token": "processor-sandbox-0asd1-a92nc",
  "request_id": "kxiMB5rN03wiLMD"
}

Step 3: Create a Finix Payment Instrument

Now, you can use the Plaid processor_token to create a Finix payment_instrument:

Copy
Copied
curl https://finix.sandbox-payments-api.com/payment_instruments \
    -H "Content-Type: application/json" \
    -H 'Finix-Version: 2022-02-01' \
    -u  USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e \
    -d '{
      "identity": "IDpYDM7J9n57q849o9E9yNrG",
      "third_party": "PLAID",
      "third_party_token": "processor-sandbox-0asd1-a92nc",
      "type": "BANK_ACCOUNT"
    }'

A successful response will have a payment_instrument with third_party: PLAID:

Copy
Copied
{
    "id": "PI3AbkuRR1JbT5kPiGQCXvD9",
    "created_at": "2022-10-11T01:42:53.29Z",
    "updated_at": "2022-10-11T01:42:53.29Z",
    "application": "APgPDQrLD52TYvqazjHJJchM",
    "created_via": "API",
    "currency": "USD",
    "enabled": true,
    "third_party": "PLAID",
    "third_party_token": "processor-sandbox-0asd1-a92nc",
    "fingerprint": "FPRd5moHxL3Ltuvk4cczxetCg",
    "identity": "IDpYDM7J9n57q849o9E9yNrG",
    "instrument_type": "BANK_ACCOUNT",
    "account_type": "PERSONAL_CHECKING",
    "bank_account_validation_check": "VALID",
    "bank_code": "123123123",
    "country": "USA",
    "masked_account_number": "XXXXX3123",
    "name": "John Doe",
    "tags": {},
    "type": "BANK_ACCOUNT",
    "_links": {}
}

This diagram summarizes that process across the Plaid and Finix platforms: Alt text

Migrating Plaid Access Tokens

If you have previously connected your customers' bank accounts with Plaid, you can migrate those bank account connections onto Finix's platform. To do this, you will need to use Plaid's /processor/token/create endpoint to exchange each customer's Plaid access_token for a processor_token with processor: finix.

For more information on creating the processor_token, please see Plaid's guide to the Plaid + Finix integration.

Use Finix’s Hosted Onboarding Forms for Sellers, Which Have Plaid Link Embedded

If you prefer a low-code or no-code solution, you can use Finix's Onboarding Forms to let your sellers connect their bank accounts with Plaid during the Finix onboarding process. Finix's Onboarding Forms let sellers on your platform choose whether to connect their bank accounts through Plaid Link or manually, giving them the flexibility to pick the option that works best for them.

Alt text

Bank Account Verification Response

When you create payment_instruments with Plaid processor_tokens, Finix uses Plaid Auth to securely get and save the account and routing numbers. In addition, Finix uses Plaid Identity to verify the ownership of the bank account, which is critical for mitigating fraud and protecting our customers.

Bank accounts connected and verified with Plaid will have bank_account_validation_check: VALID:

Copy
Copied
{
    "id": "PI3AbkuRR1JbT5kPiGQCXvD9",
    "created_at": "2022-10-11T01:42:53.29Z",
    "updated_at": "2022-10-11T01:42:53.29Z",
    "application": "APgPDQrLD52TYvqazjHJJchM",
    "created_via": "API",
    "currency": "USD",
    "enabled": true,
    "third_party": "PLAID",
    "third_party_token": "processor-sandbox-0asd1-a92nc",
    "fingerprint": "FPRd5moHxL3Ltuvk4cczxetCg",
    "identity": "IDpYDM7J9n57q849o9E9yNrG",
    "instrument_type": "BANK_ACCOUNT",
    "account_type": "PERSONAL_CHECKING",
    "bank_account_validation_check": "VALID",
    "bank_code": "123123123",
    "country": "USA",
    "masked_account_number": "XXXXX3123",
    "name": "John Doe",
    "tags": {},
    "type": "BANK_ACCOUNT",
    "_links": {}
}

Plaid Benefits

Connecting bank accounts with Plaid is advantageous by offering:

  • Better customer experience: Plaid lets your cusomters add their bank account details simply by logging into their bank account, rather than providing their bank account and routing numbers manually
  • Faster onboarding: Plaid verifies bank account existence and ownership instantly, providing the fastest onboarding experience for your customers
  • Increased security : Plaid limits the need for Finix customers to handle bank account data directly, which is preferable from a security standpoint

Supported Bank Account Types

Finix supports U.S. and Canadian Plaid bank account connections. Finix uses Plaid's Auth API to create Payment Instruments with the following details.

U.S. bank accounts

  • Account Number
  • Routing Number

Canadian bank accounts

  • Account Number
  • Transit Number
  • Institution Number