文档中心 > API类目 > 体检机构API

alibaba.alihealth.examination.hospital.special.tag (体检机构获取特色服务标签)

体检机构获取特色服务标签列表

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述

响应参数

名称 类型 示例值 描述
result ServiceResult Object alinkappserver系统返回的通用结果类
  • data_list
  • StoreSpecialTagsResponse []
  • [{"tag_name":"xxx","tag_code":"xxx","priority":123}]
  • 返回数据对象
  • └ tag_code
  • String
  • 1001
  • 标签code
  • └ tag_name
  • String
  • 医疗
  • 标签name
  • └ priority
  • Number
  • 12
  • 优先级
  • └ err_message
  • String
  • xxError
  • errMessage
  • └ err_code
  • String
  • 500
  • errCode
  • └ eagle_eye_trace_id
  • String
  • 123211221
  • traceId
  • └ success
  • Boolean
  • true
  • success

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthExaminationHospitalSpecialTagRequest req = new AlibabaAlihealthExaminationHospitalSpecialTagRequest();
AlibabaAlihealthExaminationHospitalSpecialTagResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_examination_hospital_special_tag_response>
    <result>
        <data_list>
            <store_special_tags_response>
                <tag_code>1001</tag_code>
                <tag_name>医疗</tag_name>
                <priority>12</priority>
            </store_special_tags_response>
        </data_list>
        <err_message>xxError</err_message>
        <err_code>500</err_code>
        <eagle_eye_trace_id>123211221</eagle_eye_trace_id>
        <success>true</success>
    </result>
</alibaba_alihealth_examination_hospital_special_tag_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

返回
顶部