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

alibaba.finance.insurance.claimreport.investigate.notify (物流勘测结果回传接口)

物流勘测结果回传接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
claimReportInvestigationResultRequest ClaimReportInvestigationResultRequest 可选 请求体
  • └ identifier
  • String
  • 必须
  • 1203102390
  • 幂等号
  • └ productCode
  • String
  • 必须
  • ICBU_FREE_RETURN
  • 产品
  • └ investigateResult
  • String
  • 必须
  • PASS
  • 勘测结果
  • └ goodsAttachments
  • String []
  • 可选
  • 包裹照片/拆包照片
  • └ attrs
  • String
  • 可选
  • 扩展
  • └ institution
  • String
  • 可选
  • GUO_TAI
  • 机构
  • └ suggestClaimAmount
  • String
  • 可选
  • 100.00
  • 建议理赔金额
  • └ currency
  • String
  • 可选
  • USD
  • 币种
  • └ goodsDepreciation
  • String
  • 可选
  • 80.00
  • 货物残值
  • └ claimReportNo
  • String
  • 可选
  • 190000034050
  • 报案单号
  • └ investigateResultDesc
  • String
  • 可选
  • 货物完好
  • 勘测结果描述
  • └ tenant
  • String
  • 必须
  • B2B_FOREIGN_TRADE
  • 租户
  • └ waybillNo
  • String
  • 可选
  • 42331441
  • 面单号

响应参数

名称 类型 示例值 描述
responseMessage String success! 响应消息
responseCode String SUCCESS 响应码

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaFinanceInsuranceClaimreportInvestigateNotifyRequest req = new AlibabaFinanceInsuranceClaimreportInvestigateNotifyRequest();
AlibabaFinanceInsuranceClaimreportInvestigateNotifyRequest.ClaimReportInvestigationResultRequest obj1 = new AlibabaFinanceInsuranceClaimreportInvestigateNotifyRequest.ClaimReportInvestigationResultRequest();
obj1.setIdentifier("1203102390");
obj1.setProductCode("ICBU_FREE_RETURN");
obj1.setInvestigateResult("PASS");
obj1.setGoodsAttachments("");
obj1.setAttrs("");
obj1.setInstitution("GUO_TAI");
obj1.setSuggestClaimAmount("100.00");
obj1.setCurrency("USD");
obj1.setGoodsDepreciation("80.00");
obj1.setClaimReportNo("190000034050");
obj1.setInvestigateResultDesc("货物完好");
obj1.setTenant("B2B_FOREIGN_TRADE");
obj1.setWaybillNo("42331441");
req.setClaimReportInvestigationResultRequest(obj1);
AlibabaFinanceInsuranceClaimreportInvestigateNotifyResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_finance_insurance_claimreport_investigate_notify_response>
    <responseMessage>success!</responseMessage>
    <responseCode>SUCCESS</responseCode>
</alibaba_finance_insurance_claimreport_investigate_notify_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

返回
顶部