登记发行人银行账户
此端点允许登记与已登记发行人关联的银行账户。
Request
ENDPOINT
/issuer_management/issuer/ISSUER-KEY/bank_accountMÉTODO
POSTPath Params
| 字段 | 类型 | 描述 | 字符数 |
|---|---|---|---|
ISSUER-KEY | string | 发行人的唯一键(UUID v4)。 | 36 |
Request Body
Request Body
{
"account_number": "12345678",
"account_digit": "1",
"account_branch": "1234",
"financial_institution_code_number": "001",
"financial_institution_ispb": "00000000",
"account_type": "checking"
}
Request Body Params
| 字段 | 类型 | 描述 | 最大字符数 |
|---|---|---|---|
account_number * | string | 银行账户号码,只能包含数字。 | 20 |
account_digit * | string | 账户校验位,只能包含一位数字。 | 1 |
account_branch * | string | 银行支行号码,只能包含数字。 | 6 |
financial_institution_code_number* | string | 金融机构代码(3位数字)。 | 3 |
financial_institution_ispb * | string | 金融机构 ISPB 代码(8位数字)。 | 8 |
account_type * | string | 银行账户类型。 | account_type 枚举 |
account_type 枚举
| 枚举值 | 描述 |
|---|---|
checking | 活期账户 |
savings | 储蓄账户 |
salary | 工资账户 |
payment | 支付账户 |
Response
STATUS
201Response Body
{
"bank_account_key": "123e4567-e89b-12d3-a456-426614174000",
"account_number": "12345678",
"account_digit": "1",
"account_branch": "1234",
"financial_institution_code_number": "001",
"financial_institution_ispb": "00000000",
"account_type": "checking"
}
Response Body Params
| 字段 | 类型 | 描述 | 最大字符数 |
|---|---|---|---|
bank_account_key | string | 已登记银行账户的唯一标识符(UUID v4)。 | 36 |
account_number | string | 银行账户号码。 | 20 |
account_digit | string | 银行账户校验位。 | 1 |
account_branch | string | 银行支行号码。 | 6 |
financial_institution_code_number | string | 金融机构代码。 | 3 |
financial_institution_ispb | string | 金融机构 ISPB 代码。 | 8 |
account_type | string | 银行账户类型。 | account_type 枚举 |