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

alibaba.alihealth.followup.patienttags.get (医生查看患者归属的标签)

医生查看患者归属的标签

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
request1 FollowUpTagRequest 可选 系统自动生成
  • └ ding_corp_id
  • Number
  • 必须
  • 1636873811356221
  • 集团ID
  • └ doctor_id
  • Number
  • 必须
  • 4717853024878123
  • 医生ID
  • └ follow_up_id
  • Number
  • 必须
  • 16000001376004
  • 随访ID
auth_token String 可选 9eae09db243df99bd67af033decfd257 token用于安全验证

响应参数

名称 类型 示例值 描述
result Result 接口返回类型
  • models
  • TagsDo []
  • 数据类型
  • └ tag_code
  • Number
  • 16384
  • 标签编码
  • └ tag_type
  • Number
  • 2
  • 标签类型
  • └ in_this_tag
  • Boolean
  • true
  • 是否达标
  • └ doctor_id
  • String
  • 4717853024878123
  • 医生ID
  • └ tag_name
  • String
  • 标签5
  • 标签名称
  • └ msg_code
  • String
  • 1
  • msgCode
  • └ msg_info
  • String
  • 1
  • msgInfo
  • └ success
  • Boolean
  • false
  • 是否成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthFollowupPatienttagsGetRequest req = new AlibabaAlihealthFollowupPatienttagsGetRequest();
AlibabaAlihealthFollowupPatienttagsGetRequest.FollowUpTagRequest obj1 = new AlibabaAlihealthFollowupPatienttagsGetRequest.FollowUpTagRequest();
obj1.setDingCorpId(1636873811356221L);
obj1.setDoctorId(4717853024878123L);
obj1.setFollowUpId(16000001376004L);
req.setRequest1(obj1);
req.setAuthToken("9eae09db243df99bd67af033decfd257");
AlibabaAlihealthFollowupPatienttagsGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_followup_patienttags_get_response>
    <result>
        <models>
            <tags_do>
                <tag_code>16384</tag_code>
                <tag_type>2</tag_type>
                <in_this_tag>true</in_this_tag>
                <doctor_id>4717853024878123</doctor_id>
                <tag_name>标签5</tag_name>
            </tags_do>
        </models>
        <msg_code>1</msg_code>
        <msg_info>1</msg_info>
        <success>false</success>
    </result>
</alibaba_alihealth_followup_patienttags_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

返回
顶部