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 |
livemode | boolean | Whether this is a live ( |
account_number | string | Account number |
bank_code | string | Bank code. |
branch_code | string | Branch code (Japan only). |
brand | string | Bank account brand name. |
created_at | string | UTC datetime of bank account creation in ISO 8601 format ( |
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. |
type | string | Type of bank account. One of |
Example
-
JSON Response
{ "object": "bank_account", "livemode": false, "created_at": "2019-07-23T01:19:28Z", "last_digits": "1234", "name": "Somchai Prasert", "type": null, "brand": "Bangkok Bank", "bank_code": "bbl", "branch_code": null }