DocsAPI Reference
Log In
Docs

Owners

📘

API Reference

Search financial accounts
Get a specific financial account

Overview

Account identity information helps you verify your customer's identity by accessing the data recorded with their financial institution, such as their full name, phone number, mailing address, and email address.

Use cases

There are many uses cases that will require you to verify a customer's identity, such as:

  • Verify an account before initiating an ACH transaction.
  • Verify depository-type accounts such as checking and savings accounts and credit-type accounts such as credit cards.
  • Verify the information provided by your customer with a trusted source when opening a new account.
  • Verify the information provided by your customer with a trusted source when opening a new account. Verify customers you have identified as being higher risk based on data such as email address, location, financial institution, or activity patterns.
  • Account identity data

    When calling the financial account endpoint, you will be able to access the account's identity data for that account. Also see here for an example.

    📘

    Note

    Specifying IDENTITIES as a product in /bank-linking/connect/start does not guarantee account owners data to be available for every account belonging to the connection. Some accounts do not have owners data, and others may only have some of the owners' fields.

    Sample Response

    {
        "id": "W9ja25UmrZF25xbG22wdd",
        "accountId": "W9kbkRme9VT2iz6qdsaww2",
        "customerId": "W9ja24edcTHBks8h2e2dww",
        "institutionId": "Ntj3AwgdridJc2rasdssdd",
        "institutionName": "Chase",
        "status": "ACTIVE",
        "type": "DEPOSITORY",
        "subtype": "CHECKING",
        "name": "Checking",
        "truncatedAccountNumber": "1234",
        "identifiers": {
            // data
        },
        "balances": {
            // data
        },
        "owners": [
            {
                "addresses": [
                    {
                        "data": {
                            "street": "123 Cherry Hill Lane",
                            "city": "Palo Alto",
                            "region": null,
                            "postalCode": "94537-8038",
                            "country": "USA",
                            "full": "123 Cherry Hill Lane Palo Alto CA 94537-8038 USA"
                        },
                        "primary": "UNKNOWN"
                    }
                ],
                "emails": [
                    "[email protected]"
                ],
                "names": [
                    "George Jones"
                ],
                "phoneNumbers": null
            }
        ],
        "serviceProviderDetails": [
            // data
        ]
    }