文档中心 > API类目 > ICBU交易金融

alibaba.finance.insurance.icbu.cargo.applicant.query.callback (大家保险货运险查询投保人回调)

大家保险货运险查询投保人回调

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
ali_id String 必须 1234 阿里id
product_code String 必须 ICBU_CARGO_INSURANCE 产品码

响应参数

名称 类型 示例值 描述
applicant_cal_response ApplicantCalResponse 返回值
  • applicant_info
  • ApplicantInfo
  • 投保人
  • └ customer_type
  • String
  • CGS
  • 用户类型
  • └ address
  • String
  • xxxx
  • 地址
  • └ province
  • String
  • xxxx
  • └ nation
  • String
  • xxxx
  • 国家
  • └ city
  • String
  • xxxx
  • └ contact_name
  • String
  • xxxx
  • 联系人姓名
  • └ applicant_social_credit_no
  • String
  • xxxx
  • 统一社会信用证代码
  • └ mobile
  • String
  • xxxx
  • 联系电话
  • └ county
  • String
  • xxxx
  • └ applicant_name
  • String
  • xxxx
  • 投保人姓名
  • └ email
  • String
  • xxxx
  • 邮箱
  • └ can_pay_monthly
  • Boolean
  • true
  • 月结权限
  • └ success
  • Boolean
  • true
  • 是否成功
  • └ error_code
  • String
  • SYSTEM_ERROR
  • 错误码
  • └ error_msg
  • String
  • SYSTEM_ERROR
  • 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaFinanceInsuranceIcbuCargoApplicantQueryCallbackRequest req = new AlibabaFinanceInsuranceIcbuCargoApplicantQueryCallbackRequest();
req.setAliId("1234");
req.setProductCode("ICBU_CARGO_INSURANCE");
AlibabaFinanceInsuranceIcbuCargoApplicantQueryCallbackResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_finance_insurance_icbu_cargo_applicant_query_callback_response>
    <applicant_cal_response>
        <applicant_info>
            <customer_type>CGS</customer_type>
            <address>xxxx</address>
            <province>xxxx</province>
            <nation>xxxx</nation>
            <city>xxxx</city>
            <contact_name>xxxx</contact_name>
            <applicant_social_credit_no>xxxx</applicant_social_credit_no>
            <mobile>xxxx</mobile>
            <county>xxxx</county>
            <applicant_name>xxxx</applicant_name>
            <email>xxxx</email>
            <can_pay_monthly>true</can_pay_monthly>
        </applicant_info>
        <success>true</success>
        <error_code>SYSTEM_ERROR</error_code>
        <error_msg>SYSTEM_ERROR</error_msg>
    </applicant_cal_response>
</alibaba_finance_insurance_icbu_cargo_applicant_query_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

返回
顶部