Bank Account
Define details for a bank account. This object type is used when adding recipients for transfers or transfer schedules.
Attributes
Name | Type | Description |
---|---|---|
object | string | The string |
account_type | string | Type of bank account. One of |
bank_code | string | Bank code (Japan only). |
branch_code | string | Branch code (Japan only). |
brand | string | Bank account brand (Thailand and Singapore only). |
created | string | UTC datetime of bank account creation in ISO 8601 format ( |
deleted | boolean | Whether bank account is deleted. |
last_digits | string | Last four (4) digits of bank account number. |
name | string | Bank account holder name. For Japanese bank accounts, see notes on entering bank account holder names. |
Example
-
JSON Response
// "For Thailand and Singapore" { "object": "bank_account", "brand": "bbl", "last_digits": "7890", "name": "SOMCHAI PRASERT", "created": "2015-02-26T09:56:15Z" } // "For Japan" { "object": "bank_account", "bank_code": "0001", "branch_code": "001", "account_type": "normal", "last_digits": "0001", "name": "John Doe", "created": "2018-05-17T07:58:27Z" }