文档中心 > API类目 > 阿里健康公益线API

alibaba.alihealth.pw.gm.ids.list (同情用药根据申请单列表查询申请单)

同情用药根据申请单列表查询申请单

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
body ListByApplyIdsForBReq 可选 入参
  • └ apply_unique_codes
  • String []
  • 可选
  • 1111
  • 编码列表

响应参数

名称 类型 示例值 描述
result ResponseMessage 返回值
  • └ code
  • String
  • 状态码
  • data
  • ListByApplyIdsForBResp
  • 数据
  • list
  • PendingListDto []
  • 列表
  • └ apply_status
  • String
  • 申请状态
  • └ apply_type
  • String
  • 申请类型
  • └ apply_date
  • String
  • 2020-11-11 11:11:11
  • 申请时间
  • └ apply_unique_code
  • String
  • 111
  • 唯一编码
  • └ message
  • String
  • 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthPwGmIdsListRequest req = new AlibabaAlihealthPwGmIdsListRequest();
AlibabaAlihealthPwGmIdsListRequest.ListByApplyIdsForBReq obj1 = new AlibabaAlihealthPwGmIdsListRequest.ListByApplyIdsForBReq();
obj1.setApplyUniqueCodes("1111");
req.setBody(obj1);
AlibabaAlihealthPwGmIdsListResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_pw_gm_ids_list_response>
    <result>
        <code></code>
        <data>
            <list>
                <pending_list_dto>
                    <apply_status></apply_status>
                    <apply_type></apply_type>
                    <apply_date>2020-11-11 11:11:11</apply_date>
                    <apply_unique_code>111</apply_unique_code>
                </pending_list_dto>
            </list>
        </data>
        <message></message>
    </result>
</alibaba_alihealth_pw_gm_ids_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

返回
顶部