POST api/v1/FaceVerify/ZZBFaceCompare
中证宝身份人脸核验
请求信息(Request)
URI 参数
None.
Body 参数
IDCardVerifyRequstModel名称 | 描述 | 类型 | 备注 |
---|---|---|---|
RealName |
真实姓名 |
string |
None. |
IdentityCard |
身份证 |
string |
None. |
LiveImg |
真实照片 |
string |
None. |
OrderNo |
订单号 |
string |
None. |
Account |
账号 |
string |
None. |
Password |
密码 |
string |
None. |
Identifier | string |
None. |
请求格式
application/json, text/json
Sample:
{ "RealName": "sample string 1", "IdentityCard": "sample string 2", "LiveImg": "sample string 3", "OrderNo": "sample string 4", "Account": "sample string 5", "Password": "sample string 6", "Identifier": "sample string 7" }
application/xml, text/xml
Sample:
<IDCardVerifyRequstModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLife.Application.IDCardVerify"> <Account>sample string 5</Account> <Identifier>sample string 7</Identifier> <Password>sample string 6</Password> <IdentityCard>sample string 2</IdentityCard> <LiveImg>sample string 3</LiveImg> <OrderNo>sample string 4</OrderNo> <RealName>sample string 1</RealName> </IDCardVerifyRequstModel>
application/x-www-form-urlencoded
Sample:
响应信息(Response)
资源描述
RequestResultOfBoolean名称 | 描述 | 类型 | 备注 |
---|---|---|---|
Data | boolean |
None. |
|
Status |
状态(0:成功,1:失败) |
integer |
None. |
Message |
导致失败的相关消息 |
string |
None. |
Total |
集合总数,用于分页时使用 |
integer |
None. |
响应格式
application/json, text/json
Sample:
{ "Data": true, "Status": 2, "Message": "sample string 3", "Total": 4 }
application/xml, text/xml
Sample:
<RequestResultOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLife.Application"> <Message>sample string 3</Message> <Status>2</Status> <Total>4</Total> <Data>true</Data> </RequestResultOfboolean>