文档中心 > API类目 > 阿里健康随访

alibaba.alihealth.followup.doctor.prescription.list (患者用药建议列表(医生端))

天津随访-查询患者用药建议列表(医生端)

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
request1 ListPrescription4DoctorRequest 可选 入参
  • └ page_size
  • Number
  • 可选
  • 10
  • 每页大小
  • └ page_no
  • Number
  • 可选
  • 1
  • 第几页
  • └ auth_token
  • String
  • 可选
  • 4c7718b8cc0e4d9a82d3dad173684dc6
  • 权限票根
  • └ doctor_id
  • Number
  • 必须
  • 8457194354542554
  • 医生id
  • └ corp_id
  • Number
  • 必须
  • 5355289320225080
  • 医生的随访中心id
  • └ patient_id
  • Number
  • 必须
  • 6091849435044286
  • 患者id

响应参数

名称 类型 示例值 描述
result1 ServiceResult 系统返回的通用结果类
  • └ err_message
  • String
  • errMessage
  • └ err_code
  • String
  • errCode
  • data
  • Page
  • {"sn":"xxx","mac":"xxx"}
  • 返回数据对象
  • results
  • ListPrescription4PatientResponse []
  • 分页结果
  • └ status_name
  • String
  • 处方状态名称
  • └ status
  • Number
  • 处方状态
  • └ create_date
  • String
  • 处方开具日期
  • └ rx_no
  • String
  • 处方编号
  • └ drug_names
  • String []
  • 药品名称列表
  • └ total_count
  • Number
  • 总数目
  • └ order_by
  • String
  • 排序字段
  • └ page_size
  • Number
  • 每页大小
  • └ page_no
  • Number
  • 第几页
  • └ success
  • Boolean
  • success

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthFollowupDoctorPrescriptionListRequest req = new AlibabaAlihealthFollowupDoctorPrescriptionListRequest();
AlibabaAlihealthFollowupDoctorPrescriptionListRequest.ListPrescription4DoctorRequest obj1 = new AlibabaAlihealthFollowupDoctorPrescriptionListRequest.ListPrescription4DoctorRequest();
obj1.setPageSize(10L);
obj1.setPageNo(1L);
obj1.setAuthToken("4c7718b8cc0e4d9a82d3dad173684dc6");
obj1.setDoctorId(8457194354542554L);
obj1.setCorpId(5355289320225080L);
obj1.setPatientId(6091849435044286L);
req.setRequest1(obj1);
AlibabaAlihealthFollowupDoctorPrescriptionListResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_followup_doctor_prescription_list_response>
    <result1>
        <err_message></err_message>
        <err_code></err_code>
        <data>
            <results>
                <list_prescription4_patient_response>
                    <status_name></status_name>
                    <status></status>
                    <create_date></create_date>
                    <rx_no></rx_no>
                    <drug_names>
                        <string></string>
                    </drug_names>
                </list_prescription4_patient_response>
            </results>
            <total_count></total_count>
            <order_by></order_by>
            <page_size></page_size>
            <page_no></page_no>
        </data>
        <success></success>
    </result1>
</alibaba_alihealth_followup_doctor_prescription_list_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

返回
顶部