企业贷款业务-机构授信结果推送
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
param | ExternalCreditNotifyRequest | 必须 | 请求参数 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | ExternalCreditNotifyResponse | result | |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlibabaFinanceCreditResultNotifyRequest req = new AlibabaFinanceCreditResultNotifyRequest(); AlibabaFinanceCreditResultNotifyRequest.ExternalCreditNotifyRequest obj1 = new AlibabaFinanceCreditResultNotifyRequest.ExternalCreditNotifyRequest(); obj1.setRequestId( "123123123213213123123" ); obj1.setCustomerId( "232131323" ); obj1.setCreditApplyNo( "FI231313131312313123" ); obj1.setInstitutionCreditApplyNo( "11313123123123213" ); obj1.setInstitutionCreditNo( "31313123213" ); obj1.setInstitutionCustomerId( "231313123" ); obj1.setCreditStatus( "QUALIFIED" ); obj1.setCreditTime(StringUtils.parseDateTime( "2019-11-22 00:00:00" )); obj1.setCreditQuota( "1213213.21" ); obj1.setInterestRate( "0.18" ); obj1.setStartTime(StringUtils.parseDateTime( "2019-11-22 00:00:00" )); obj1.setEndTime(StringUtils.parseDateTime( "2019-11-22 00:00:00" )); obj1.setExtendInfo( "{\"key\":value}" ); obj1.setFailReasonCode( "RETRY_MAX_LIMITS" ); obj1.setFailReasonMessage( "\"超过最大次数\"" ); obj1.setNextAvailableApplyTime(StringUtils.parseDateTime( "2050-11-22 00:00:00" )); obj1.setCreditTerm( "1" ); obj1.setCreditTermUnit( "\"M\"" ); req.setParam(obj1); AlibabaFinanceCreditResultNotifyResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 | < alibaba_finance_credit_result_notify_response > < result > < trace_id >1231231312321跨境1回款</ trace_id > < data >{\"key\":\"value\"}</ data > < success >true</ success > < response_message >未知异常</ response_message > < response_code >HC</ response_code > </ result > </ alibaba_finance_credit_result_notify_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 > |
错误码 | 错误描述 | 解决方案 |
---|