# 身份证实名认证


# 接口地址

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

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


# 请求参数

参数名 是否必填 类型 说明
accesskey String 秘钥key
secret String 秘钥secret
realname String 姓名
idcard String 身份证

# 返回参数

参数名 类型 说明
realname String 姓名
idcard String 身份证号码
res int 匹配结果,1:匹配 2:不匹配

# 返回示例

{
    "msg": "成功",
    "data": {
        "realname": "小明",
        "idcard": "340827*******92X",
        "res": 1
    },
    "ret": 0
}