文档中心 > API类目 > 场景金融保险

alibaba.finance.insurance.icbu.ddd.credit.callback (ICBU生意贷授信申请结果回调)

ICBU生意贷授信申请结果回调

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
credit_callback_request CreditCallbackRequest 必须 授信结果回调请求
  • └ biz_id
  • String
  • 必须
  • 12345
  • 授信单号
  • └ biz_type
  • String
  • 必须
  • CREDIT
  • 业务类型
  • └ content
  • String
  • 必须
  • {"creditContractNo":"12345","status":"3","creditApplyTime":"2022-08-23 08:08:08"}
  • 回调JSON报文

响应参数

名称 类型 示例值 描述
response_code String SUCCESS 返回code
response_msg String null 异常信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaFinanceInsuranceIcbuDddCreditCallbackRequest req = new AlibabaFinanceInsuranceIcbuDddCreditCallbackRequest();
AlibabaFinanceInsuranceIcbuDddCreditCallbackRequest.CreditCallbackRequest obj1 = new AlibabaFinanceInsuranceIcbuDddCreditCallbackRequest.CreditCallbackRequest();
obj1.setBizId("12345");
obj1.setBizType("CREDIT");
obj1.setContent("{\"creditContractNo\":\"12345\",\"status\":\"3\",\"creditApplyTime\":\"2022-08-23 08:08:08\"}");
req.setCreditCallbackRequest(obj1);
AlibabaFinanceInsuranceIcbuDddCreditCallbackResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_finance_insurance_icbu_ddd_credit_callback_response>
    <response_code>SUCCESS</response_code>
    <response_msg>null</response_msg>
</alibaba_finance_insurance_icbu_ddd_credit_callback_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部