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

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

alibaba.alihealth.insurance.inst.user.rights.use.notify (权益使用通知)

权益使用通知

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
req InstUserRightsUseNotifyRequest 必须 请求参数
  • └ user_rights_id
  • Number
  • 必须
  • 2500000653555004450
  • 用户权益ID
  • └ inst_fulfillment_order_id
  • String
  • 必须
  • 2500000653555004455
  • 机构履约订单号
  • └ inst_fulfillment_order_status
  • String
  • 必须
  • PAID
  • 机构履约状态
  • └ consign_time
  • String
  • 可选
  • 2022-05-13 17:01:41
  • 发货时间
  • └ policy_id
  • Number
  • 可选
  • 2500000653555004452
  • 权益对应保单ID

响应参数

名称 类型 示例值 描述
data InstUserRightsUseNotifyResponse 返回数据
  • └ result
  • String
  • ""
  • 通知结果
response_status String SUCCESS 响应码,SUCCESS标识成功FAIL标识失败
response_message String "" 状态信息
response_code String "" 状态码

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthInsuranceInstUserRightsUseNotifyRequest req = new AlibabaAlihealthInsuranceInstUserRightsUseNotifyRequest();
AlibabaAlihealthInsuranceInstUserRightsUseNotifyRequest.InstUserRightsUseNotifyRequest obj1 = new AlibabaAlihealthInsuranceInstUserRightsUseNotifyRequest.InstUserRightsUseNotifyRequest();
obj1.setUserRightsId(2500000653555004450L);
obj1.setInstFulfillmentOrderId("2500000653555004455");
obj1.setInstFulfillmentOrderStatus("PAID");
obj1.setConsignTime("2022-05-13 17:01:41");
obj1.setPolicyId(2500000653555004452L);
req.setReq(obj1);
AlibabaAlihealthInsuranceInstUserRightsUseNotifyResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_insurance_inst_user_rights_use_notify_response>
    <data>
        <result>&quot;&quot;</result>
    </data>
    <response_status>SUCCESS</response_status>
    <response_message>&quot;&quot;</response_message>
    <response_code>&quot;&quot;</response_code>
</alibaba_alihealth_insurance_inst_user_rights_use_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

返回
顶部