注意:以下文档只适用于TOP接口,请谨慎使用!

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

alibaba.alihealth.dental.statement.query (ISV查询对账单)

ISV查询对账单

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
order_id String 可选 1212 订单ID
statement_time String 可选 2012-12 结算周期,单位月

响应参数

名称 类型 示例值 描述
result MtopResult result result
  • └ success
  • Boolean
  • true
  • success
  • statement_detail_vos
  • StatementDetailVo []
  • model
  • model
  • └ consume_status
  • Number
  • 0
  • 核销状态 0 未核销 1已核销
  • └ order_id
  • String
  • 1212
  • 订单ID
  • └ settlement_price
  • String
  • 1111
  • 结算价,单位分
  • └ cost_price
  • String
  • 1000
  • 成本,单位分
  • └ profit_price
  • String
  • 1200
  • 利润,单位分

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthDentalStatementQueryRequest req = new AlibabaAlihealthDentalStatementQueryRequest();
req.setOrderId("1212");
req.setStatementTime("2012-12");
AlibabaAlihealthDentalStatementQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_alihealth_dental_statement_query_response>
    <result>
        <success>true</success>
        <statement_detail_vos>
            <statement_detail_vo>
                <consume_status>0</consume_status>
                <order_id>1212</order_id>
                <settlement_price>1111</settlement_price>
                <cost_price>1000</cost_price>
                <profit_price>1200</profit_price>
            </statement_detail_vo>
        </statement_detail_vos>
    </result>
</alibaba_alihealth_dental_statement_query_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

返回
顶部