Represents a checking or savings account at a U.S. bank.
Bank account objects must be linked with an employee, contractor, or company. A company must have a linked bank account in order for Check to automatically withdraw funds to fund payrolls. An employee or contractor must have a linked bank account in order for Check to pay them using direct deposit.
Check will validate that either a raw_bank_account
object or a plaid_bank_account
object is included. You can read more about our bank account verification process here.
{
"id": "bnk_k2KX3XVt4B6JpNXmF3vf",
"employee": "emp_hkyDTyLEziNfU8jixzPM",
"status": "validation_pending",
"raw_bank_account": {
"institution_name": null,
"account_number_last_four": "3890",
"routing_number": "026009593",
"type": "depository",
"subtype": "checking"
}
}
{
"id": "bnk_HysE2hvUbu3APQ7cjswJ",
"employee": "emp_x38JYoUXRaMdifvzBUY6",
"status": "ownership_verified",
"plaid_bank_account": {
"name": "Business Checking",
"plaid_public_token": "public-production-C8rZVjaA-gh2N-xuDw-2CHL-6fzNcs4ZEKZd",
"institution_name": "Bank of America",
"mask": "3890",
"type": "depository",
"subtype": "checking",
"verified": true,
"microdeposit_verification_status": null
}
}
Attribute | Description |
---|---|
id | Unique identifier for the bank account. |
employee | ID of the employee on the account. |
company | ID of the company on the account. |
contractor | ID of the contractor on the account. |
status | Validation and verification status of the account. Values may be A bank account can be used for payroll if its status is not |
disabled_reason | Reason for status being Values may be
|
raw_bank_account | Structured information about the bank account. |
institution_name | The name of the bank holding the account. |
account_number_last_four | The last four digits of the account’s account number. |
routing_number | The account’s routing number. |
subtype | The account’s subtype. Values may be |
plaid_bank_account | Structured information about the Plaid account. |
plaid_processor_token | A Check processor token retrieved from the Plaid API. Will be |
metadata | Additional loosely structured information to associate with this bank account. |