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

alibaba.alihealth.followup.tags.remove (医生删除标签)

医生标签列表中,删除标签接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
request1 FollowUpTagRequest 可选 请求参数包装类
  • └ ding_corp_id
  • Number
  • 可选
  • 1636873811356221
  • 集团ID
  • └ doctor_id
  • Number
  • 可选
  • 4717853024878123
  • 医生ID
  • └ tag_code
  • Number
  • 可选
  • 32768
  • 标签编码
auth_token String 可选 9eae09db243df99bd67af033decfd257 token,用于安全验证

响应参数

名称 类型 示例值 描述
result Result 接口返回result
  • └ model
  • Boolean
  • true
  • 是否删除成功
  • └ msg_code
  • String
  • TAG_CODE_IS_NULL
  • msgCode
  • └ msg_info
  • String
  • 标签编码不能为空
  • msgInfo
  • └ success
  • Boolean
  • false
  • 是否成功

请求示例

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

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_followup_tags_remove_response>
    <result>
        <model>true</model>
        <msg_code>TAG_CODE_IS_NULL</msg_code>
        <msg_info>标签编码不能为空</msg_info>
        <success>false</success>
    </result>
</alibaba_alihealth_followup_tags_remove_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

返回
顶部