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

alipay.baoxian.yfx.order.list.query (查询运费险订单列表)

查询用户名下运费险列表信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
alipay_user_id String 必须 2088 支付宝帐号ID
page_num Number 必须 1 页号
page_size Number 必须 10 单页数量

响应参数

名称 类型 示例值 描述
model InsQueryYfxOrderListResponse response 响应对象
  • list
  • InsYfxInfo []
  • list
  • 列表
  • └ auction_picture_url
  • String
  • xx.pic
  • 商品图片链接
  • └ auction_title
  • String
  • 321
  • 商品标题
  • └ biz_order_id
  • String
  • 13
  • 交易单号
  • └ claim_fee
  • Number
  • 313
  • 理赔金额
  • └ claim_in_account
  • String
  • 13
  • 理赔收入帐号
  • └ claim_no
  • String
  • 44
  • 理赔单号
  • └ claim_refuse_code
  • String
  • 12
  • 理赔拒赔code
  • └ claim_status
  • Number
  • 1
  • 理赔状态
  • └ has_sub_order
  • Boolean
  • 4
  • 是否有子订单
  • └ order_gmt_create
  • Date
  • 23
  • 订单创建时间
  • └ policy_no
  • String
  • 321
  • 保单号
  • └ policy_status
  • Number
  • 31
  • 保单状态
  • └ refund_id
  • String
  • 32
  • 退款ID
  • └ refund_mail_no
  • String
  • 213
  • 退款物流单号
  • └ refund_post_type
  • String
  • 31
  • 退款寄件方式
  • └ refund_status
  • Number
  • 231
  • 退款状态
  • └ sp_no
  • String
  • 201065
  • 标准产品编号
  • └ claim_report
  • String
  • 202111101100300602020766780213
  • 报案单号
  • └ total_count
  • Number
  • 1
  • 总数

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlipayBaoxianYfxOrderListQueryRequest req = new AlipayBaoxianYfxOrderListQueryRequest();
req.setAlipayUserId("2088");
req.setPageNum(1L);
req.setPageSize(10L);
AlipayBaoxianYfxOrderListQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alipay_baoxian_yfx_order_list_query_response>
    <model>
        <list>
            <ins_yfx_info>
                <auction_picture_url>xx.pic</auction_picture_url>
                <auction_title>321</auction_title>
                <biz_order_id>13</biz_order_id>
                <claim_fee>313</claim_fee>
                <claim_in_account>13</claim_in_account>
                <claim_no>44</claim_no>
                <claim_refuse_code>12</claim_refuse_code>
                <claim_status>1</claim_status>
                <has_sub_order>4</has_sub_order>
                <order_gmt_create>23</order_gmt_create>
                <policy_no>321</policy_no>
                <policy_status>31</policy_status>
                <refund_id>32</refund_id>
                <refund_mail_no>213</refund_mail_no>
                <refund_post_type>31</refund_post_type>
                <refund_status>231</refund_status>
                <sp_no>201065</sp_no>
                <claim_report>202111101100300602020766780213</claim_report>
            </ins_yfx_info>
        </list>
        <total_count>1</total_count>
    </model>
</alipay_baoxian_yfx_order_list_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

返回
顶部