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

alibaba.health.vaccin.notice.timebucket.remind (疫苗预约时间段提醒)

疫苗预约时间段提醒

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
alipay_user_id String 必须 支付宝id 432421
vaccine_name String 可选 狂犬病疫苗
  • 默认值:下一针疫苗
  • 疫苗名称
    reserve_date String 必须 2019-02-08 预约日期:2019-02-08 严格按照
    name String 可选 小明 接种人姓名
    the_times String 可选 第一针 针次
    pov_store_name String 可选 闻潮社区卫生服务中心 接种点名称(通知方)
    reserve_time String 可选 08:00-09:00 可预约时段
    mobile String 可选 18801112312 用户授权的手机号

    响应参数

    名称 类型 示例值 描述
    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);
    AlibabaHealthVaccinNoticeTimebucketRemindRequest req = new AlibabaHealthVaccinNoticeTimebucketRemindRequest();
    req.setAlipayUserId("支付宝id");
    req.setVaccineName("狂犬病疫苗");
    req.setReserveDate("2019-02-08");
    req.setName("小明");
    req.setTheTimes("第一针");
    req.setPovStoreName("闻潮社区卫生服务中心");
    req.setReserveTime("08:00-09:00");
    req.setMobile("18801112312");
    AlibabaHealthVaccinNoticeTimebucketRemindResponse rsp = client.execute(req);
    System.out.println(rsp.getBody());

    响应示例

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

    返回
    顶部