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

alibaba.health.vaccin.appointment.result.notify (通知预约结果)

和ISV合作,需ISV回传预约结果。

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
appoint_result Boolean 必须 true 预约结果
order_id String 必须 111231231 预约单id
period_seq_no Number 可选 1 时间段内序号
out_id String 必须 112312llkj 鹿苗预约单外部id
fail_reason String 可选 库存不足 预约失败原因
success_code String 可选 111 预约成功码

响应参数

名称 类型 示例值 描述
model Boolean true 1
is_success Boolean true 1
msg_code String 1 1
msg_info String 1 1

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaHealthVaccinAppointmentResultNotifyRequest req = new AlibabaHealthVaccinAppointmentResultNotifyRequest();
req.setAppointResult(true);
req.setOrderId("111231231");
req.setPeriodSeqNo(1L);
req.setOutId("112312llkj");
req.setFailReason("库存不足");
req.setSuccessCode("111");
AlibabaHealthVaccinAppointmentResultNotifyResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_health_vaccin_appointment_result_notify_response>
    <model>true</model>
    <is_success>true</is_success>
    <msg_code>1</msg_code>
    <msg_info>1</msg_info>
</alibaba_health_vaccin_appointment_result_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

返回
顶部