保存用户信息
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
user | String | 必须 | 3 | 用户标识 | |
idle_loan_personal_info | IdleLoanPersonalInfo | 可选 | idleLoanPersonalInfo | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
idle_point_result | IdlePointResult | idlePointResult | |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlibabaIdleInteractLoanUserPutRequest req = new AlibabaIdleInteractLoanUserPutRequest(); req.setUser( "3" ); AlibabaIdleInteractLoanUserPutRequest.IdleLoanPersonalInfo obj1 = new AlibabaIdleInteractLoanUserPutRequest.IdleLoanPersonalInfo(); obj1.setSceneCode( "xxxxx" ); AlibabaIdleInteractLoanUserPutRequest.RealNameInfoDto obj2 = new AlibabaIdleInteractLoanUserPutRequest.RealNameInfoDto(); obj2.setCredentialNumber( "xxxxx" ); obj2.setRealName( "xxxxx" ); obj2.setCredentialBackImage( "xxxxx" ); obj2.setCredentialStartDate( "xxxxx" ); obj2.setCredentialGmtEnd( "xxxxx" ); obj2.setGender(6L); obj2.setBirthDate( "xxxxx" ); obj2.setNation( "xxxxx" ); obj2.setSignOrganization( "xxxxx" ); obj2.setAddress( "xxxxx" ); obj2.setCredentialFrontImage( "xxx" ); obj2.setExtInfos( "xxx" ); obj1.setRealNameInfo(obj2); obj1.setEnv( "pre" ); req.setIdleLoanPersonalInfo(obj1); AlibabaIdleInteractLoanUserPutResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 10 | < alibaba_idle_interact_loan_user_put_response > < idle_point_result > < success >false</ success > < data >false</ data > < biz_error > < err_code >xx</ err_code > < err_msg >xx</ err_msg > </ biz_error > </ idle_point_result > </ alibaba_idle_interact_loan_user_put_response > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|