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

alibaba.health.vaccin.pov.update (新增/变更接种点信息)

ISV 将疫苗的接种点信息同步到免疫规划中心,提醒用户接种时可提供接种点详情。

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
pov_no String 必须 2088332589401234 接种点编码
pov_name String 必须 呼家楼接种点 接种点名称
telephone String 必须 18801293033 接种点联系电话
address String 必须 北京市朝阳区呼家楼社区5号 接种点具体地址
description String 可选 儿童免疫规划接种官方指定合作点 接种点介绍
business_time String 可选 周一至周五 09:00-17:00 服务时间

响应参数

名称 类型 示例值 描述
model Boolean true 返回数据详情
is_success Boolean true 是否成功执行
msg_code String 999 错误码
msg_info String 电话号码格式不正确 错误描述

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaHealthVaccinPovUpdateRequest req = new AlibabaHealthVaccinPovUpdateRequest();
req.setPovNo("2088332589401234");
req.setPovName("呼家楼接种点");
req.setTelephone("18801293033");
req.setAddress("北京市朝阳区呼家楼社区5号");
req.setDescription("儿童免疫规划接种官方指定合作点");
req.setBusinessTime("周一至周五 09:00-17:00");
AlibabaHealthVaccinPovUpdateResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_health_vaccin_pov_update_response>
    <model>true</model>
    <is_success>true</is_success>
    <msg_code>999</msg_code>
    <msg_info>电话号码格式不正确</msg_info>
</alibaba_health_vaccin_pov_update_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

返回
顶部