文档中心 > API类目 > 阿里健康-疫苗API

alibaba.health.vaccin.notice.user.bind (支付宝疫苗绑定接种人)

支付宝疫苗绑定接种人

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
alipay_user_id String 必须 20883325894071234 支付宝ID
bind_users AlipayVaccineUserBindDto [] 可选
  • 最大列表长度:999
  • 绑定人信息list
    • └ reserve_date
    • String
    • 可选
    • 2019-02-08
    • 预约日期:2019-02-08 严格按照
    • └ age_type
    • String
    • 可选
    • 1
    • 年龄类型(1-宝宝2-成人)
    • └ pov_no
    • String
    • 可选
    • 110101001001
    • 接种点编码
    • └ name
    • String
    • 可选
    • 赵哈哈
    • 绑定人姓名
    • └ isv_user_id
    • String
    • 可选
    • 10204
    • ISV 侧接种人 ID
    • └ pov_name
    • String
    • 可选
    • 朝阳社区
    • 接种点名称
    • └ birthday
    • String
    • 可选
    • 2020-07-07
    • 接种人出生日期
    outer_user_id String 可选 3928019 ISV 侧用户 ID
    mobile String 可选 18801293033 联系电话
    app_channel String 可选 alipay或yl
  • 默认值:alipay
  • 用户来源:alipay或yl

    响应参数

    名称 类型 示例值 描述
    is_success Boolean true 执行是否成功
    msg_code String 999 错误code
    msg_info String 参数格式不正确 错误描述
    model Boolean true 结果

    请求示例

    • JAVA
    • .NET
    • PHP
    • CURL
    • Python
    • C/C++
    • NodeJS
    TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
    AlibabaHealthVaccinNoticeUserBindRequest req = new AlibabaHealthVaccinNoticeUserBindRequest();
    req.setAlipayUserId("20883325894071234");
    List<AlibabaHealthVaccinNoticeUserBindRequest.AlipayVaccineUserBindDto> list2 = new ArrayList<AlibabaHealthVaccinNoticeUserBindRequest.AlipayVaccineUserBindDto>();
    AlibabaHealthVaccinNoticeUserBindRequest.AlipayVaccineUserBindDto obj3 = new AlibabaHealthVaccinNoticeUserBindRequest.AlipayVaccineUserBindDto();
    list2.add(obj3);
    obj3.setReserveDate("2019-02-08");
    obj3.setAgeType("1");
    obj3.setPovNo("110101001001");
    obj3.setName("赵哈哈");
    obj3.setIsvUserId("10204");
    obj3.setPovName("朝阳社区");
    obj3.setBirthday("2020-07-07");
    req.setBindUsers(list2);
    req.setOuterUserId("3928019");
    req.setMobile("18801293033");
    req.setAppChannel("alipay或yl");
    AlibabaHealthVaccinNoticeUserBindResponse rsp = client.execute(req);
    System.out.println(rsp.getBody());

    响应示例

    • XML示例
    • JSON示例
    <alibaba_health_vaccin_notice_user_bind_response>
        <is_success>true</is_success>
        <msg_code>999</msg_code>
        <msg_info>参数格式不正确</msg_info>
        <model>true</model>
    </alibaba_health_vaccin_notice_user_bind_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

    返回
    顶部