企业贷款业务-机构还款推送
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
param | ExternalRepayNotifyRequest | 必须 | 参数 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | ExternalRepayNotifyResponse | 结果 | |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlibabaFinanceRepayResultNotifyRequest req = new AlibabaFinanceRepayResultNotifyRequest(); AlibabaFinanceRepayResultNotifyRequest.ExternalRepayNotifyRequest obj1 = new AlibabaFinanceRepayResultNotifyRequest.ExternalRepayNotifyRequest(); obj1.setRepayPrincipal( "12.22" ); obj1.setRepaidTime(StringUtils.parseDateTime( "2024-11-18 12:22:31" )); obj1.setRequestId( "1121212121212" ); obj1.setRepayAmount( "12.13" ); obj1.setExtendInfo( "\"{}\"" ); obj1.setFailReasonMessage( "\"错误\"" ); obj1.setRepayPenalty( "22.32" ); obj1.setRepayApplyNo( "\"FI22323232X\"" ); obj1.setInstituionRepaymentNo( "\"FI22323232X\"" ); obj1.setFailReasonCode( "REJECT" ); obj1.setCustomerId( "223232" ); obj1.setRepayInterest( "2.13" ); obj1.setRepayStatus( "\"STATUS\"" ); req.setParam(obj1); AlibabaFinanceRepayResultNotifyResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 | < alibaba_finance_repay_result_notify_response > < result > < trace_id >”223232hkjssdsd"</ trace_id > < data >{"key":"value"}</ data > < success >true</ success > < response_message >"系统异常"</ response_message > < response_code >SYSTEM_ERROR</ response_code > </ result > </ alibaba_finance_repay_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 > |
错误码 | 错误描述 | 解决方案 |
---|