taobao.auction.loan.online.queryinsurancechargerule (保险收费规则查询)

根据贷款单号查询收费规则

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
loan_order_no String 必须 250508594400R6W3X4 贷款申请单号

响应参数

名称 类型 示例值 描述
result_code String SYSTEM_ERROR 错误码
value LoanInsuranceChargeRule 计费规则
  • └ full_payment_ratio
  • Number
  • 25000
  • 全款比例, 2.5 * 10000
  • └ full_payment_reduce_ratio
  • Number
  • 25000
  • 全款降价下限比例,25000代表2.5%
  • └ down_payment_type
  • Number
  • 1
  • 首款方式:固定金额(1)、固定比例(2)
  • └ down_payment_amount
  • Number
  • 10000
  • 首款固定金额,单位分
  • └ down_payment_ratio
  • Number
  • 1000023
  • 首款固定比例
  • └ upper_limit
  • Number
  • 1000023
  • 固定比例上限:单位分;
  • └ lower_limit
  • Number
  • 1000023
  • 固定比例下限:单位分。
  • └ id
  • Number
  • 418
  • 收费规则id
result_msg String 系统异常 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AuctionLoanOnlineQueryinsurancechargeruleRequest req = new AuctionLoanOnlineQueryinsurancechargeruleRequest();
req.setLoanOrderNo("250508594400R6W3X4");
AuctionLoanOnlineQueryinsurancechargeruleResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<auction_loan_online_queryinsurancechargerule_response>
    <result_code>SYSTEM_ERROR</result_code>
    <value>
        <full_payment_ratio>25000</full_payment_ratio>
        <full_payment_reduce_ratio>25000</full_payment_reduce_ratio>
        <down_payment_type>1</down_payment_type>
        <down_payment_amount>10000</down_payment_amount>
        <down_payment_ratio>1000023</down_payment_ratio>
        <upper_limit>1000023</upper_limit>
        <lower_limit>1000023</lower_limit>
        <id>418</id>
    </value>
    <result_msg>系统异常</result_msg>
</auction_loan_online_queryinsurancechargerule_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

返回
顶部