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

alibaba.alihealth.followup.org.group.info (群资料展示)

医生端群资料展示

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
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
  • {"sn":"xxx","mac":"xxx"}
  • 返回数据对象
  • └ member_count
  • String
  • 8
  • 群成员数量
  • └ doctor_permission
  • String
  • 解散群
  • 登陆医生权限
  • doctors
  • FollowGroupInfoDoctorVO []
  • 群资料页面的医生列表(五个)
  • └ 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
  • 是否主管医生
  • └ doctor_identity
  • String
  • 1
  • 医生身份(1-模板医生 2-实例医生)
  • └ group_id
  • String
  • 实例组id
  • patient
  • FollowPatientVo
  • 就诊人信息
  • └ patient_id
  • String
  • 1232341234
  • 就诊人id
  • └ corp_id
  • String
  • 4234234221
  • 随访中心id
  • └ patient_name
  • String
  • 张三
  • 就诊人姓名
  • └ relation_type
  • String
  • children
  • 就诊人关系
  • └ photo_url
  • String
  • https://ossgw.alicdn.com/o2ooss/doc/3607697123/dbf3fe558bd34d93905455582ee9207b.jpg
  • 就诊人图片
  • └ 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);
AlibabaAlihealthFollowupOrgGroupInfoRequest req = new AlibabaAlihealthFollowupOrgGroupInfoRequest();
AlibabaAlihealthFollowupOrgGroupInfoRequest.FollowGroupDoctorRequest obj1 = new AlibabaAlihealthFollowupOrgGroupInfoRequest.FollowGroupDoctorRequest();
obj1.setDoctorId("2034131106552037");
obj1.setPatientId("1110239233233421");
obj1.setDeptId("733252940234330");
obj1.setCorpId("1636873811356221");
req.setRequest1(obj1);
req.setAuthToken("58ce78f5-bda1-4c49-94ce-5e5680adffa2");
AlibabaAlihealthFollowupOrgGroupInfoResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_followup_org_group_info_response>
    <result>
        <data>
            <member_count>8</member_count>
            <doctor_permission>解散群</doctor_permission>
            <doctors>
                <follow_group_info_doctor_v_o>
                    <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>
                </follow_group_info_doctor_v_o>
            </doctors>
            <doctor_identity>1</doctor_identity>
            <group_id></group_id>
            <patient>
                <patient_id>1232341234</patient_id>
                <corp_id>4234234221</corp_id>
                <patient_name>张三</patient_name>
                <relation_type>children</relation_type>
                <photo_url>https://ossgw.alicdn.com/o2ooss/doc/3607697123/dbf3fe558bd34d93905455582ee9207b.jpg</photo_url>
            </patient>
        </data>
        <success>true</success>
        <err_code>SERVICE_ERROR</err_code>
        <err_message>服务失败</err_message>
    </result>
</alibaba_alihealth_followup_org_group_info_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

返回
顶部