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

alibaba.alihealth.followup.org.info.get (获取医生所在组织信息)

获取医生所在组织信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
auth_token String 必须 58ce78f5-bda1-4c49-94ce-5e5680adffa2 权限票根
request1 FollowUpOrgRequest 必须 入参
  • └ doctor_id
  • Number
  • 必须
  • 4717853024878123
  • 医生id
  • └ corp_id
  • Number
  • 必须
  • 1636873811356221
  • 集团id

响应参数

名称 类型 示例值 描述
result ServiceResult alinkappserver系统返回的通用结果类
  • └ err_message
  • String
  • 服务失败
  • errMessage
  • data
  • FollowUpDoctorOrgVO
  • 返回数据对象
  • └ code_type
  • String
  • CORP_CODE
  • 二维码类型
  • └ org_name
  • String
  • 非常霸气科技有限公司
  • 组织名称
  • └ org_link_url
  • String
  • https://www.taobao.com
  • 组织二维码
  • └ short_url
  • String
  • https://ur.alipay.com/abc
  • 短链接
  • └ title
  • String
  • 主任医师
  • 职称
  • └ dept_entity_name
  • String
  • 肾病科
  • 科室名称
  • └ hospital_name
  • String
  • 中心医院
  • 医院名称
  • └ doctor_name
  • String
  • 张三
  • 医生姓名
  • └ err_code
  • String
  • SERVICE_ERROR
  • errCode
  • └ success
  • Boolean
  • true
  • success

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthFollowupOrgInfoGetRequest req = new AlibabaAlihealthFollowupOrgInfoGetRequest();
req.setAuthToken("58ce78f5-bda1-4c49-94ce-5e5680adffa2");
AlibabaAlihealthFollowupOrgInfoGetRequest.FollowUpOrgRequest obj1 = new AlibabaAlihealthFollowupOrgInfoGetRequest.FollowUpOrgRequest();
obj1.setDoctorId(4717853024878123L);
obj1.setCorpId(1636873811356221L);
req.setRequest1(obj1);
AlibabaAlihealthFollowupOrgInfoGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_followup_org_info_get_response>
    <result>
        <err_message>服务失败</err_message>
        <data>
            <code_type>CORP_CODE</code_type>
            <org_name>非常霸气科技有限公司</org_name>
            <org_link_url>https://www.taobao.com</org_link_url>
            <short_url>https://ur.alipay.com/abc</short_url>
            <title>主任医师</title>
            <dept_entity_name>肾病科</dept_entity_name>
            <hospital_name>中心医院</hospital_name>
            <doctor_name>张三</doctor_name>
        </data>
        <err_code>SERVICE_ERROR</err_code>
        <success>true</success>
    </result>
</alibaba_alihealth_followup_org_info_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

返回
顶部