面签回调接口
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
interview_a_p_i_request | InterviewApiRequest | 可选 | interviewAPIRequest | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
call_success | Boolean | true | 是否成功 |
fail_code | String | XXX_ERROR | 错误编码 |
fail_message | String | 错误信息内容 | 错误信息 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AuctionLoanOnlineInterviewcallbackRequest req = new AuctionLoanOnlineInterviewcallbackRequest(); AuctionLoanOnlineInterviewcallbackRequest.InterviewApiRequest obj1 = new AuctionLoanOnlineInterviewcallbackRequest.InterviewApiRequest(); obj1.setLoanOrderNo( "24010900100YSKSSG" ); obj1.setInterviewResultCode( "PASS" ); obj1.setInterviewTime( "2022-10-08 09:55:00" ); obj1.setLoanBankName( "XX银行杭州分行" ); obj1.setBankLoanContractNumber( "202301012123A" ); obj1.setLoanAmount(2000000L); obj1.setLoanMonths(48L); obj1.setLendingRates( "3.34" ); obj1.setFloating( true ); obj1.setPrimaryBorrowerName( "张小甜" ); obj1.setPrimaryBorrowerCertType( "IDENTITY_CARD" ); obj1.setPrimaryBorrowerCertCode( "3303887782778978" ); obj1.setPrimaryBorrowerContactNumber( "18628776567" ); obj1.setPrimaryBorrowerBankAccount( "3789102391739181231" ); obj1.setCoBorrowerName( "纪晓云" ); obj1.setCoBorrowerCertType( "IDENTITY_CARD" ); obj1.setCoBorrowerCertCode( "3789102391739181231" ); obj1.setCoBorrowerContactNumber( "18628776567" ); obj1.setMemo( "面签通过尽快支付首付款" ); obj1.setDeadline( "2022-10-08 09:55:00" ); obj1.setLoanIntentionUrlList( "123456" ); obj1.setLoanBankSocialCreditCode( "12345" ); obj1.setServiceProviderName( "测试服务商" ); obj1.setServiceProviderId(123456L); obj1.setBusinessPersonName( "测试" ); obj1.setBusinessPersonPhone(130923152361L); obj1.setIdCardUrlList( "" aaa "," bbb "" ); req.setInterviewAPIRequest(obj1); AuctionLoanOnlineInterviewcallbackResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 | < auction_loan_online_interviewcallback_response > < call_success >true</ call_success > < fail_code >XXX_ERROR</ fail_code > < fail_message >错误信息内容</ fail_message > </ auction_loan_online_interviewcallback_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 > |
错误码 | 错误描述 | 解决方案 |
---|