跳到主要内容

登记发行人银行账户

此端点允许登记与已登记发行人关联的银行账户。


Request

ENDPOINT
/issuer_management/issuer/ISSUER-KEY/bank_account
MÉTODO
POST

Path Params

字段类型描述字符数
ISSUER-KEYstring发行人的唯一键(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
201
Response 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_keystring已登记银行账户的唯一标识符(UUID v4)。36
account_numberstring银行账户号码。20
account_digitstring银行账户校验位。1
account_branchstring银行支行号码。6
financial_institution_code_numberstring金融机构代码。3
financial_institution_ispbstring金融机构 ISPB 代码。8
account_typestring银行账户类型。account_type 枚举