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

alibaba.alihealth.examination.report.diagnose.file.code.get (ISV获取报告文件查看验证码)

体检报告人工解读_ISV获取报告文件验证码进行查看报告文件

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
report_id Number 必须 123123 报告id
order_id String 可选 qwe12323 订单id
doctor_id String 可选 123sdf 医生id

响应参数

名称 类型 示例值 描述
result ServiceResult alinkappserver系统返回的通用结果类
  • data
  • IsvGetReportFileCodeResponse
  • demo
  • 返回数据对象
  • └ isv_code
  • String
  • 213123
  • 报告文件查看验证码
  • └ err_code
  • String
  • FAIL_BIZ_PARAM_ERROR
  • errCode
  • └ success
  • Boolean
  • false
  • success
  • └ err_message
  • String
  • 预约记录不存在!
  • errMessage

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthExaminationReportDiagnoseFileCodeGetRequest req = new AlibabaAlihealthExaminationReportDiagnoseFileCodeGetRequest();
req.setReportId(123123L);
req.setOrderId("qwe12323");
req.setDoctorId("123sdf");
AlibabaAlihealthExaminationReportDiagnoseFileCodeGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_examination_report_diagnose_file_code_get_response>
    <result>
        <data>
            <isv_code>213123</isv_code>
        </data>
        <err_code>FAIL_BIZ_PARAM_ERROR</err_code>
        <success>false</success>
        <err_message>预约记录不存在!</err_message>
    </result>
</alibaba_alihealth_examination_report_diagnose_file_code_get_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

返回
顶部