# 金融账户绑定提现卡

# 调用方式: POST

# 接口地址:

https://api.freelog.com/v3/transactions/accounts/{accountId}/bindCashCard
1

# url传入参数说明:

参数 必选 类型及范围 说明
accountId 必选 string 金融账户ID

# body传入参数说明:

参数 必选 类型及范围 说明
cardType 必选 string 0:对公,1:对私法人,2:对私非法人,4:对公非同名;
个人商户/用户不支持对公类型,对私非法人类型;
bankName 必选 string 开户行名称
cardName 必选 string 持卡人姓名
cardNo 必选 string 卡号
provId 必选 string 银行所在省ID
areaId 必选 string 银行所在城市ID
branchCode 可选 string 银行支行联行号; 当card_type=0时必填

# body示例

{
    "cardType": 1,
    "bankName": "中国工商银行",
    "cardName": "余亮",
    "cardNo": "xxxxxxxxxxxxxxx3888",
    "provId": "440000",
    "areaId": "440300"
}
1
2
3
4
5
6
7
8

# 返回说明:

返回值字段 字段类型 字段说明
[data] bool 是否激活成功

# 示例

{
    "ret": 0,
    "errcode": 0,
    "msg": "success",
    "data": true
}
1
2
3
4
5
6