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

alibaba.finance.insurance.claimreport.result.notify (理赔报案结果回传接口)

理赔报案结果回传接口(外贸使用)

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
claimReportResultRequest ClaimReportResultRequest 可选 请求体
  • └ identifier
  • String
  • 必须
  • 123123121
  • 幂等号
  • warehouseInfo
  • WarehouseInfo
  • 可选
  • 仓库信息
  • └ area
  • String
  • 可选
  • 西区
  • 地区
  • └ zipcode
  • String
  • 可选
  • 523000
  • 邮编
  • └ country
  • String
  • 可选
  • 俄罗斯
  • 国家
  • └ address
  • String
  • 可选
  • 克里姆林宫
  • 地址
  • └ province
  • String
  • 可选
  • 加州
  • 省份
  • └ city
  • String
  • 可选
  • 莫斯科
  • 城市
  • └ contactName
  • String
  • 可选
  • SF001
  • 仓库收件人,通常是仓库代号
  • └ warehouseContactName
  • String
  • 可选
  • 小张
  • 仓库联系人姓名
  • └ telephone
  • String
  • 可选
  • 18493030303
  • 联系电话
  • └ warehouseContactDetails
  • String
  • 可选
  • 电话
  • 仓库联系详情
  • └ warehouseCode
  • String
  • 可选
  • SF201
  • 仓库编码
  • └ institution
  • String
  • 可选
  • GUO_TAI
  • 机构
  • └ productCode
  • String
  • 必须
  • ICBU_FREE_RERURN
  • 产品
  • └ claimReportResult
  • String
  • 必须
  • PASS
  • 报案结果
  • expressInfo
  • ExpressInfo
  • 可选
  • 物流信息
  • └ expressUrl
  • String
  • 可选
  • www.alibaba.com
  • 物流面单链接
  • └ logisticsCompanyCode
  • String
  • 可选
  • SF
  • 物流公司代码
  • └ waybillNo
  • String
  • 可选
  • 40000001
  • 面单号
  • └ available
  • Boolean
  • 可选
  • true
  • 该面单号是否有效
  • └ claimReportResultDesc
  • String
  • 可选
  • 资质评审通过
  • 报案结果描述
  • └ claimReportNo
  • String
  • 必须
  • 1231231313
  • 报案号
  • └ tenant
  • String
  • 必须
  • B2B_FOREIGN_TRADE
  • 租户
  • └ attrs
  • String
  • 可选
  • null
  • 扩展字段
  • └ claimReportResultCode
  • String
  • 可选
  • TEST
  • TEST

响应参数

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

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaFinanceInsuranceClaimreportResultNotifyRequest req = new AlibabaFinanceInsuranceClaimreportResultNotifyRequest();
AlibabaFinanceInsuranceClaimreportResultNotifyRequest.ClaimReportResultRequest obj1 = new AlibabaFinanceInsuranceClaimreportResultNotifyRequest.ClaimReportResultRequest();
obj1.setIdentifier("123123121");
AlibabaFinanceInsuranceClaimreportResultNotifyRequest.WarehouseInfo obj2 = new AlibabaFinanceInsuranceClaimreportResultNotifyRequest.WarehouseInfo();
obj2.setArea("西区");
obj2.setZipcode("523000");
obj2.setCountry("俄罗斯");
obj2.setAddress("克里姆林宫");
obj2.setProvince("加州");
obj2.setCity("莫斯科");
obj2.setContactName("SF001");
obj2.setWarehouseContactName("小张");
obj2.setTelephone("18493030303");
obj2.setWarehouseContactDetails("电话");
obj2.setWarehouseCode("SF201");
obj1.setWarehouseInfo(obj2);
obj1.setInstitution("GUO_TAI");
obj1.setProductCode("ICBU_FREE_RERURN");
obj1.setClaimReportResult("PASS");
AlibabaFinanceInsuranceClaimreportResultNotifyRequest.ExpressInfo obj3 = new AlibabaFinanceInsuranceClaimreportResultNotifyRequest.ExpressInfo();
obj3.setExpressUrl("www.alibaba.com");
obj3.setLogisticsCompanyCode("SF");
obj3.setWaybillNo("40000001");
obj3.setAvailable(true);
obj1.setExpressInfo(obj3);
obj1.setClaimReportResultDesc("资质评审通过");
obj1.setClaimReportNo("1231231313");
obj1.setTenant("B2B_FOREIGN_TRADE");
obj1.setAttrs("null");
obj1.setClaimReportResultCode("TEST");
req.setClaimReportResultRequest(obj1);
AlibabaFinanceInsuranceClaimreportResultNotifyResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_finance_insurance_claimreport_result_notify_response>
    <responseMessage>Successful interaction!</responseMessage>
    <responseCode>SUCCESS</responseCode>
</alibaba_finance_insurance_claimreport_result_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

返回
顶部