taobao.auction.loan.online.updateinsurancefullpaymentratio (更新保险全款比例)

更新保险全款比例

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
update_insurance_full_payment_ratio_a_p_i_request UpdateInsuranceFullPaymentRatioApiRequest 可选 updateInsuranceFullPaymentRatioAPIRequest
  • └ loan_order_no
  • String
  • 必须
  • 24010900100YSKSSG
  • 贷款申请单号
  • └ full_payment_ratio
  • Number
  • 必须
  • 25000
  • 全款比例,25000代表2.500%

响应参数

名称 类型 示例值 描述
call_success Boolean true 是否成功
fail_code String XXX_ERROR 错误编码
fail_message String 错误信息内容 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AuctionLoanOnlineUpdateinsurancefullpaymentratioRequest req = new AuctionLoanOnlineUpdateinsurancefullpaymentratioRequest();
AuctionLoanOnlineUpdateinsurancefullpaymentratioRequest.UpdateInsuranceFullPaymentRatioApiRequest obj1 = new AuctionLoanOnlineUpdateinsurancefullpaymentratioRequest.UpdateInsuranceFullPaymentRatioApiRequest();
obj1.setLoanOrderNo("24010900100YSKSSG");
obj1.setFullPaymentRatio(25000L);
req.setUpdateInsuranceFullPaymentRatioAPIRequest(obj1);
AuctionLoanOnlineUpdateinsurancefullpaymentratioResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<auction_loan_online_updateinsurancefullpaymentratio_response>
    <call_success>true</call_success>
    <fail_code>XXX_ERROR</fail_code>
    <fail_message>错误信息内容</fail_message>
</auction_loan_online_updateinsurancefullpaymentratio_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

返回
顶部