文档中心 > API类目 > ICBU-一达通

alibaba.icbu.ddd.credit.certification.query (获取ICBU生意贷授信凭证)

获取ICBU生意贷授信凭证

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
channel String 必须 XIAOMAN 渠道
customer CustomerDTO 必须 用户
  • └ customer_type
  • String
  • 必须
  • 3664297069
  • 用户ID类型
  • └ customer_id
  • String
  • 必须
  • ICBU_AMES_EID
  • 用户ID
product_type String 必须 ICBU_DDD 产品
tenant String 必须 B2B_FOREIGN_TRADE 租户

响应参数

名称 类型 示例值 描述
credit_certification_url String http://fin-oss.oss-cn-zhangjiakou.aliyuncs.com 授信凭证url
guide_text String Please find our Credit Certificate as attached. 引导文案
show_status String QUALIFIED 展示状态
response_message String success message
response_code String 200 返回code
file_factory_no String FF990100001055222041100008020503 文件编号
file_show_name String Credit_Line_Certificate 文件名

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaIcbuDddCreditCertificationQueryRequest req = new AlibabaIcbuDddCreditCertificationQueryRequest();
req.setChannel("XIAOMAN");
AlibabaIcbuDddCreditCertificationQueryRequest.CustomerDTO obj1 = new AlibabaIcbuDddCreditCertificationQueryRequest.CustomerDTO();
obj1.setCustomerType("3664297069");
obj1.setCustomerId("ICBU_AMES_EID");
req.setCustomer(obj1);
req.setProductType("ICBU_DDD");
req.setTenant("B2B_FOREIGN_TRADE");
AlibabaIcbuDddCreditCertificationQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_icbu_ddd_credit_certification_query_response>
    <credit_certification_url>http://fin-oss.oss-cn-zhangjiakou.aliyuncs.com</credit_certification_url>
    <guide_text>Please find our Credit Certificate as attached.</guide_text>
    <show_status>QUALIFIED</show_status>
    <response_message>success</response_message>
    <response_code>200</response_code>
    <file_factory_no>FF990100001055222041100008020503</file_factory_no>
    <file_show_name>Credit_Line_Certificate</file_show_name>
</alibaba_icbu_ddd_credit_certification_query_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

返回
顶部