# 银行卡四要素


# 接口地址

https://cms.1cloudsp.com/open/api/qry/data/42

请求方式:POST,以表单的形式传递参数,content-type:application/x-www-form-urlencoded。编码采用UTF-8编码。


# 请求参数

参数名 是否必填 类型 说明
accesskey String 秘钥key
secret String 秘钥secret
realname String 姓名
idcard String 身份证
bankcard String 银行号
mobile String 手机号码

# 返回参数

参数名 类型 说明
bankcard String 银行卡卡号
realname String 姓名
idcard String 身份证号码
mobile String 手机号码
jobid String 本次查询流水号
res int 匹配结果,1:匹配 2:不匹配
message String 结果

# 返回示例

{
    "ret": 0,
    "msg": "成功",
    "data": {
        "jobid": "JH2131210520084922699312RV",
        "realname": "小明",
        "bankcard": "623156*****7776",
        "idcard": "34082*****10492X",
        "mobile": "15*******794",
        "res": 1,
        "message": "验证成功",
        "bank_name": "光大银行"
    }
}