Bank Account(銀行口座)
Bank Account(銀行口座)APIは、送金(Transfer)のために必要な口座情報を取得することができます。
Attributes
| Name | Type | Description | 
|---|---|---|
| object | string | 固定値  | 
| account_type | string | 銀行口座の種類 。「普通」もしくは「当座」のいずれか(日本のみ)。 | 
| bank_code | string | 金融機関コード(日本のみ)。 | 
| branch_code | string | 支店コード(日本のみ)。 | 
| brand | string | 銀行口座ブランド brand(タイおよびシンガポールのみ)。 | 
| created | string | ISO 8601形式( | 
| deleted | boolean | 銀行口座が削除されたかどうか。 | 
| last_digits | string | 下4桁の口座番号。 | 
| name | string | 銀行口座名義人の名前。 | 
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" }