注意:以下文档只适用于TOP接口,请谨慎使用!

文档中心 > API类目 > 阿里健康保险-信息交互

alibaba.alihealth.insurance.inst.surrender.info.sync (保司向我方同步退保信息)

保司向我方同步退保信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
biz_data ZaSurrenderRequest 可选 入参
  • └ status
  • String
  • 可选
  • APPLY
  • 状态
  • └ refund_money
  • String
  • 可选
  • 100
  • 退保金额
  • └ surrender_time
  • String
  • 可选
  • 202105311400
  • 退保时间
  • └ endorsement_no
  • String
  • 可选
  • 12345678
  • 批次号
  • └ inst_policy_id
  • String
  • 可选
  • ZA12345678
  • 保司保单ID
  • └ alipay_open_id
  • String
  • 可选
  • 208812345678
  • 用户支付宝ID
  • └ pre_flow_id
  • String
  • 可选
  • 12345678
  • 预投保流水ID
  • └ type
  • String
  • 可选
  • USER_SUBMIT
  • 类型

响应参数

名称 类型 示例值 描述
result_status String 系统自动生成
data Boolean true 成功
result_code String 系统自动生成
result_msg String 系统自动生成

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthInsuranceInstSurrenderInfoSyncRequest req = new AlibabaAlihealthInsuranceInstSurrenderInfoSyncRequest();
AlibabaAlihealthInsuranceInstSurrenderInfoSyncRequest.ZaSurrenderRequest obj1 = new AlibabaAlihealthInsuranceInstSurrenderInfoSyncRequest.ZaSurrenderRequest();
obj1.setStatus("APPLY");
obj1.setRefundMoney("100");
obj1.setSurrenderTime("202105311400");
obj1.setEndorsementNo("12345678");
obj1.setInstPolicyId("ZA12345678");
obj1.setAlipayOpenId("208812345678");
obj1.setPreFlowId("12345678");
obj1.setType("USER_SUBMIT");
req.setBizData(obj1);
AlibabaAlihealthInsuranceInstSurrenderInfoSyncResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_insurance_inst_surrender_info_sync_response>
    <result_status></result_status>
    <data>true</data>
    <result_code></result_code>
    <result_msg></result_msg>
</alibaba_alihealth_insurance_inst_surrender_info_sync_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

返回
顶部