1.5.1 实名类 API

优质
小牛编辑
126浏览
2023-12-01

身份证信息验证

接口描述

身份证信息验证

URL

/identity/authentication

HTTP Method

POST

请求参数

参数名称是否必选类型描述
namestring姓名
idNumberstring身份号码

返回参数

参数名称是否必选类型描述
resultCodeint身份验证结果
resultDescstring身份验证结果描述

HTTP请求示例

POST /identity/authentication HTTP/1.1
Host: api.miot.10046.mi.com
Date: Thu, 15 May 2014 11:18:32 GMT
H-XM-AppId: 开放平台分配给接入方的appId
H-XM-V: 2.0    //接口版本号
Authorization: 参考Authorization加签规则
Content-Type: application/json;charset=UTF-8
{
    "name":"小米",    //string.姓名
    "idNumber":"..."    //string.证件ID
}

成功响应示例

HTTP/1.1 200 OK
Date: Thu, 15 May 2014 11:18:32 GMT
Content-Type: application/json;charset=UTF-8
Content-Length: 556
Connection: keep-alive
Server: resin4.0.13
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 1
X-RateLimit-Reset: 60000 // 单位毫秒
XM-Request-Id: 97ad742e-7a17-42fa-ad05-b5e559699335 // 接口本次请求的唯一标识.UUID version 4.由服务端生成
{
    "rtnCode": 0,
    "rtnMsg": "success",
    "data":{
        "resultCode":0,
        "resultDesc":"验证通过"
       }
}

实名照片上传

接口描述

实名照片上传

URL

/identity/photos

HTTP Method

POST

请求参数

参数名称是否必选类型描述
photoTypeint照片类型
photoBase64Strstring要上传的照片的base64字符串
phoneNumberstring手机号
operatorstring操作人

返回参数

参数名称是否必选类型描述
identityInfoobject身份信息

HTTP请求示例

POST /identity/photos HTTP/1.1
Host: api.miot.10046.mi.com
Date: Thu, 15 May 2014 11:18:32 GMT
H-XM-AppId: 开放平台分配给接入方的appId
H-XM-V: 2.0    //接口版本号
Authorization: 参考Authorization加签规则
Content-Type: application/json;charset=UTF-8
{
    "photoType":10,
    "photoBase64Str":"xxx",
    "phoneNumber":"xxxx",
    "operator":""
}

成功响应示例

HTTP/1.1 200 OK
Date: Thu, 15 May 2014 11:18:32 GMT
Content-Type: application/json;charset=UTF-8
Content-Length: 556
Connection: keep-alive
Server: resin4.0.13
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 1
X-RateLimit-Reset: 60000 // 单位毫秒
XM-Request-Id: 97ad742e-7a17-42fa-ad05-b5e559699335 // 接口本次请求的唯一标识.UUID version 4.由服务端生成
{
    "rtnCode": 0,
    "rtnMsg": "success",
    "data":{
        "identityInfo":{
            "bucket":"identity",
            "photoId":"a873c134-02fa-4507-b16a-6136dd0bad13",
            "photoType":10
        }
    }
}