企业贷款业务-机构协议上传结果推送
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
external_agreement_notify_request | ExternalAgreementNotifyRequest | 必须 | 请求参数 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | ExternalAgreementNotifyResponse | 返回值 | |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlibabaFinanceAgreementUploadNotifyRequest req = new AlibabaFinanceAgreementUploadNotifyRequest(); AlibabaFinanceAgreementUploadNotifyRequest.ExternalAgreementNotifyRequest obj1 = new AlibabaFinanceAgreementUploadNotifyRequest.ExternalAgreementNotifyRequest(); obj1.setInstitution( "JIANGSU" ); obj1.setApplyNo( "123132131313123" ); List<AlibabaFinanceAgreementUploadNotifyRequest.Attachment> list3 = new ArrayList<AlibabaFinanceAgreementUploadNotifyRequest.Attachment>(); AlibabaFinanceAgreementUploadNotifyRequest.Attachment obj4 = new AlibabaFinanceAgreementUploadNotifyRequest.Attachment(); list3.add(obj4); obj4.setPath( "/edn/aliababa/file" ); obj4.setType( "TMALL_DDD_YZ_JSBK_PERSONAL_CREDIT_AUTH" ); obj4.setName( "12232323232323" ); obj4.setSuffix( "pdf" ); obj1.setAttachmentList(list3); obj1.setRequestId( "12312312313123" ); obj1.setCustomerId( "123123123123" ); obj1.setPushScene( "LOAN" ); obj1.setExtendInfo( "{}" ); req.setExternalAgreementNotifyRequest(obj1); AlibabaFinanceAgreementUploadNotifyResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 | < alibaba_finance_agreement_upload_notify_response > < result > < trace_id >123131323</ trace_id > < data >{}</ data > < success >true</ success > < response_message >""</ response_message > < response_code >ERROR</ response_code > </ result > </ alibaba_finance_agreement_upload_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 > |
错误码 | 错误描述 | 解决方案 |
---|