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

alibaba.alihealth.followup.org.group.quit (实例医生退群)

实例医生退出群

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
request1 FollowUpGroupQuitRequest 必须 入参
  • └ corp_id
  • String
  • 必须
  • 1636873811356221
  • 随访中心id
  • └ group_id
  • String
  • 必须
  • 5548404442903380
  • 实例组id
  • └ instance_doctor_id
  • String
  • 必须
  • 2034131106552037
  • 实例医生id
auth_token String 必须 58ce78f5-bda1-4c49-94ce-5e5680adffa2 权限票根

响应参数

名称 类型 示例值 描述
result1 ServiceResult alinkappserver系统返回的通用结果类
  • └ success
  • Boolean
  • true
  • success
  • └ err_code
  • String
  • SERVICE_ERROR
  • errCode
  • └ err_message
  • String
  • 服务失败
  • errMessage
  • └ data
  • Boolean
  • {"sn":"xxx","mac":"xxx"}
  • 返回数据对象

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthFollowupOrgGroupQuitRequest req = new AlibabaAlihealthFollowupOrgGroupQuitRequest();
AlibabaAlihealthFollowupOrgGroupQuitRequest.FollowUpGroupQuitRequest obj1 = new AlibabaAlihealthFollowupOrgGroupQuitRequest.FollowUpGroupQuitRequest();
obj1.setCorpId("1636873811356221");
obj1.setGroupId("5548404442903380");
obj1.setInstanceDoctorId("2034131106552037");
req.setRequest1(obj1);
req.setAuthToken("58ce78f5-bda1-4c49-94ce-5e5680adffa2");
AlibabaAlihealthFollowupOrgGroupQuitResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_followup_org_group_quit_response>
    <result1>
        <success>true</success>
        <err_code>SERVICE_ERROR</err_code>
        <err_message>服务失败</err_message>
        <data>{&quot;sn&quot;:&quot;xxx&quot;,&quot;mac&quot;:&quot;xxx&quot;}</data>
    </result1>
</alibaba_alihealth_followup_org_group_quit_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

返回
顶部