Owners
API Reference
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:
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.
NoteSpecifying
IDENTITIESas 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
]
}Updated 2 months ago