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

alibaba.alihealth.followup.org.group.member.list (群成员展示接口)

随访医生端查看群成员列表

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
request1 FollowGroupDoctorRequest 必须 入参
  • └ doctor_id
  • String
  • 必须
  • 2034131106552037
  • 医生id
  • └ patient_id
  • String
  • 必须
  • 1110239233233421
  • 患者id
  • └ dept_id
  • String
  • 必须
  • 733252940234330
  • 模板组id
  • └ corp_id
  • String
  • 必须
  • 1636873811356221
  • 随访中心id
auth_token String 必须 58ce78f5-bda1-4c49-94ce-5e5680adffa2 权限票根

响应参数

名称 类型 示例值 描述
result ServiceResult alinkappserver系统返回的通用结果类
  • data
  • FollowGroupInfoVo
  • 返回数据对象
  • template_doctors
  • Templatedoctors []
  • 模板医生列表
  • └ name
  • String
  • 黄少爷
  • 医生姓名
  • └ short_name
  • String
  • h
  • 姓名简写
  • └ title
  • String
  • 主治医生
  • 职称
  • └ img
  • String
  • https://ossgw.alicdn.com/o2ooss/doc/3607697123/dbf3fe558bd34d93905455582ee9207b.jpg
  • 医生头像
  • └ doctor_id
  • String
  • 2034131106552037
  • 医生id
  • └ is_master_doctor
  • Boolean
  • true
  • 是否主管医生
  • instance_doctors
  • Instancedoctors []
  • 实例医生列表
  • └ img
  • String
  • https://ossgw.alicdn.com/o2ooss/doc/3607697123/dbf3fe558bd34d93905455582ee9207b.jpg
  • 医生头像
  • └ title
  • String
  • 技师
  • 医生职称
  • └ short_name
  • String
  • s
  • 姓名简写
  • └ name
  • String
  • 拴麻
  • 医生姓名
  • └ doctor_id
  • String
  • 3474305185591725
  • 医生id
  • follow_patient
  • FollowPatientVo
  • 患者
  • └ patient_id
  • String
  • 1110239233233421
  • 患者id
  • └ corp_id
  • String
  • 1636873811356221
  • 随访中心id
  • └ patient_name
  • String
  • 李四
  • 患者姓名
  • └ relation_type
  • String
  • ONESELF
  • 患者关系
  • └ photo_url
  • String
  • https://tfs.alipayobjects.com/images/partner/T1LiJzXlhcXXXXXXXX
  • 患者头像
  • └ can_remove_doctor
  • Boolean
  • TRUE
  • 是否可以将实例医生移出群
  • └ success
  • Boolean
  • true
  • success
  • └ err_code
  • String
  • SERVICE_ERROR
  • errCode
  • └ err_message
  • String
  • 服务失败
  • errMessage

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthFollowupOrgGroupMemberListRequest req = new AlibabaAlihealthFollowupOrgGroupMemberListRequest();
AlibabaAlihealthFollowupOrgGroupMemberListRequest.FollowGroupDoctorRequest obj1 = new AlibabaAlihealthFollowupOrgGroupMemberListRequest.FollowGroupDoctorRequest();
obj1.setDoctorId("2034131106552037");
obj1.setPatientId("1110239233233421");
obj1.setDeptId("733252940234330");
obj1.setCorpId("1636873811356221");
req.setRequest1(obj1);
req.setAuthToken("58ce78f5-bda1-4c49-94ce-5e5680adffa2");
AlibabaAlihealthFollowupOrgGroupMemberListResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_followup_org_group_member_list_response>
    <result>
        <data>
            <template_doctors>
                <templatedoctors>
                    <name>黄少爷</name>
                    <short_name>h</short_name>
                    <title>主治医生</title>
                    <img>https://ossgw.alicdn.com/o2ooss/doc/3607697123/dbf3fe558bd34d93905455582ee9207b.jpg</img>
                    <doctor_id>2034131106552037</doctor_id>
                    <is_master_doctor>true</is_master_doctor>
                </templatedoctors>
            </template_doctors>
            <instance_doctors>
                <instancedoctors>
                    <img>https://ossgw.alicdn.com/o2ooss/doc/3607697123/dbf3fe558bd34d93905455582ee9207b.jpg</img>
                    <title>技师</title>
                    <short_name>s</short_name>
                    <name>拴麻</name>
                    <doctor_id>3474305185591725</doctor_id>
                </instancedoctors>
            </instance_doctors>
            <follow_patient>
                <patient_id>1110239233233421</patient_id>
                <corp_id>1636873811356221</corp_id>
                <patient_name>李四</patient_name>
                <relation_type>ONESELF</relation_type>
                <photo_url>https://tfs.alipayobjects.com/images/partner/T1LiJzXlhcXXXXXXXX</photo_url>
            </follow_patient>
            <can_remove_doctor>TRUE</can_remove_doctor>
        </data>
        <success>true</success>
        <err_code>SERVICE_ERROR</err_code>
        <err_message>服务失败</err_message>
    </result>
</alibaba_alihealth_followup_org_group_member_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

返回
顶部