Requesting an Individual Real-Name Authentication
Function
This API can be used to submit an individual real-name authentication application.
An individual customer can refer to the instructions described in Overall Process to complete the real-name authentication.
Constraints
- This API can be invoked only by the partner account's AK/SK or token.
- To use this API, partners need to enable Upload Photos of Handheld ID Cards Required for Real-Name Authentication on the Benefits and Support > API Configuration > Configure page.
- Images for real-name authentication must be uploaded to the download directory of the bucket.
- Only individual certificate authentication can be performed using APIs.
URI
POST /v2/customers/realname-auths/individual
Request
Request Parameters
Parameter |
Mandatory |
Type |
Value Range |
Description |
---|---|---|---|---|
customer_id |
Yes |
String |
A maximum of 64 characters |
Customer account ID. You can call the API in Querying Customers to obtain the customer ID. |
identify_type |
Yes |
Integer |
- |
Authentication method. 0: Using the individual certificate |
verified_file_url |
Yes |
List<String> |
A maximum of 4 characters |
|
name |
Yes |
String |
A maximum of 255 characters |
Name. |
verified_number |
Yes |
String |
A maximum of 32 characters |
Certificate number. |
xaccount_type |
Yes |
String |
A maximum of 64 characters |
Platform ID assigned by Huawei to a partner. This value is assigned by Huawei. For details about how to obtain the platform ID, see How Do I Obtain the xaccountType Value? |
verified_type |
No |
Integer |
- |
Certificate type. 3: Passport. Two attachments need to be uploaded: the picture of the profile page, and the picture of the customer holding the passport in hands (the profile page on the front side). 5: Exit-Entry Permit for Traveling to and from Hong Kong and Macao. Three attachments need to be uploaded: the picture of the front side of Exit-Entry Permit (profile page), the picture of the back side of Exit-Entry Permit, and the picture of the customer holding Exit-Entry Permit in hands (profile page on the front side). 6: Mainland Travel Permit for Taiwan Residents. Three attachments need to be uploaded: the picture of the front side of Mainland Travel Permit (profile page), the picture of the back side of Mainland Travel Permit, and the picture of the customer holding Mainland Travel Permit in hands (profile page on the front side). 7: International driver license. Two attachments need to be uploaded: the picture of the front side of the international driver license (profile page), and the picture of the customer holding the international driver license in hands (profile page on the front side). 9: Residence Permit for Hong Kong and Macao Residents. Three attachments need to be uploaded: the picture of the profile side of Residence Permit for Hong Kong and Macao Residents, the picture of the national emblem side of Residence Permit for Hong Kong and Macao Residents, and the picture of the customer holding Residence Permit for Hong Kong and Macao Residents in hands (profile side on the front side). 10: Residence Permit for Taiwan Residents. Three attachments need to be uploaded: the picture of the profile side of Residence Permit for Taiwan Residents, the picture of the national emblem side of Residence Permit for Taiwan Residents, and the picture of the customer holding Residence Permit for Taiwan Residents in hands (profile side on the front side). This parameter needs to be specified only when identifyType is set to 0. |
change_type |
No |
Integer |
[-1] |
Change type. -1: First time real-name authentication |
Example Request
POST https://bss-intl.myhuaweicloud.com/v2/customers/realname-auths/individual HTTP/1.1 Content-Type: application/json X-Auth-Token: MIIPAgYJKoZIhvcNAQcCo...ggg1BBIINPXsidG9rZ { "verified_number": "949826********2922", "verified_file_url": [ "shimingrenzheng/zhengmian001.jpg", "shimingrenzheng/fanmian002.jpg", "shimingrenzheng/chizheng003.jpg" ], "name": "wangx_****_001", "change_type": -1, "customer_id": "068a6d********288536b6ba57d1ffae", "verified_type": 0, "identify_type": 0, "xaccount_type": "***_IDP" }
Response
Response Parameters
Status code: 200
Parameter |
Type |
Value Range |
Description |
---|---|---|---|
is_review |
Integer |
- |
Whether to transfer to manual review. This parameter is returned only when the status code is 200.
|
Status code: 400
Parameter |
Type |
Value Range |
Description |
---|---|---|---|
error_code |
String |
A maximum of 16 characters |
Error code. For details, see Returned Values. This parameter is returned only when a failure occurs. |
error_msg |
String |
A maximum of 1024 characters |
Error description. This parameter is returned only when a failure occurs. |
is_review |
Integer |
- |
Whether to transfer to manual review. This parameter is returned only when the status code is 200.
|
fail_check_items |
List<String> |
- |
Error list. For details, see Table 1. Error list. This parameter is displayed only when error code CBC.99007004 is returned. |
Item |
Description |
---|---|
PIC_FORMAT_ERR |
Incorrect certificate picture format. |
PIC_SIZE_ERR |
Incorrect certificate picture size. |
INVALID_FRONT_IDCARD |
The front side of the certificate is invalid or blurred. |
INVALID_BACK_IDCARD |
The back side of the certificate is invalid or blurred. |
IDCARD_INFO_NOT_SAME |
The entered certificate information is different from that displayed in the picture of the front side of the certificate. |
INVALID_IDCARD_FACE |
The picture of holding the certificate is invalid or blurred. |
Example Response
HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: length Date: response time { "is_review": "1" }
Returned Values
HTTP Value |
Error Code |
Description |
---|---|---|
400 |
CBC.99000000 |
You do not have the operation permission to this customer. |
400 |
CBC.99000027 |
The customer has passed real-name authentication or is being reviewed. |
400 |
CBC.99000026 |
The number of real-name authentication times of the customer exceeds the upper limit. |
400 |
CBC.99000035 |
You are not a customer of a partner yet. |
400 |
CBC.99005030 |
The partner did not complete real-name authentication or bucket authentication. |
400 |
CBC.99007004 |
The initiated service operation does not meet the service check item requirement. |
400 |
CBC.99007188 |
Real-name authentication failed. |
400 |
CBC.99007189 |
The number of users who used the certificate ID for real-name authentication has reached the maximum limit. |
400 |
CBC.99007193 |
The certificate ID is from an invalid certificate and cannot be used for real-name authentication. |
400 |
CBC.99007202 |
The ID information or mobile number is incorrect. |
400 |
CBC.99007259 |
You are a partner and cannot be authenticated as an individual using your real name. |
400 |
CBC.99007261 |
The bank card is not supported. Try another bank card. |
400 |
CBC.99007265 |
You are a partner and cannot be authenticated as an individual using your real name. |
400 |
CBC.0100 |
Parameter error. |
403 |
CBC.0151 |
Access denied. |
500 |
CBC.0999 |
Other errors. |
