文档中心 > API类目 > 体检机构API

alibaba.alihealth.examination.report.diagnose.order.submit (体检报告人工解读订单)

体检报告人工解读订单信息推送给ISV,进行人工解读

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
order_id String 可选 202103039870 订单ID
mobile_phone String 可选 *******0000 手机号码,显示后四位
id_card_no String 可选 1****************0 证件号,显示前1,后1
gender String 可选 male 性别
report_url String 可选 https://xxxx.com/report 报告地址
question String 可选 血压高 主诉问题
patient_name String 可选 小明 咨询人名称

响应参数

名称 类型 示例值 描述
response_code String 200 请求状态
msg_code String 100 错误码
msg_info String 内部异常 错误信息
order_info OrderInfo 三方订单信息
  • └ outer_order_id
  • String
  • 202103039870
  • 外部订单ID
  • └ status
  • String
  • 10
  • 订单状态
  • └ im_url
  • String
  • https://xxxx.com/im
  • 聊天地址,用户之间进行隔离
  • └ doctor_id
  • String
  • 985
  • 医生ID
  • └ order_id
  • String
  • 202103039870
  • 订单ID

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthExaminationReportDiagnoseOrderSubmitRequest req = new AlibabaAlihealthExaminationReportDiagnoseOrderSubmitRequest();
req.setOrderId("202103039870");
req.setMobilePhone("*******0000");
req.setIdCardNo("1****************0");
req.setGender("male");
req.setReportUrl("https://xxxx.com/report");
req.setQuestion("血压高");
req.setPatientName("小明");
AlibabaAlihealthExaminationReportDiagnoseOrderSubmitResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_examination_report_diagnose_order_submit_response>
    <response_code>200</response_code>
    <msg_code>100</msg_code>
    <msg_info>内部异常</msg_info>
    <order_info>
        <outer_order_id>202103039870</outer_order_id>
        <status>10</status>
        <im_url>https://xxxx.com/im</im_url>
        <doctor_id>985</doctor_id>
        <order_id>202103039870</order_id>
    </order_info>
</alibaba_alihealth_examination_report_diagnose_order_submit_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

返回
顶部