alipay.baoxian.yfx.order.detail.query (运费险订单详情查询)

查询运费险订单对应的状态

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
alipay_user_id String 必须 2088 支付宝帐号ID
biz_order_id String 必须 123 交易订单号

响应参数

名称 类型 示例值 描述
model InsQueryYfxOrderDetailResponse model 响应模型
  • yfx_info
  • InsYfxInfo
  • yfxinfo
  • 运费险信息
  • └ auction_picture_url
  • String
  • xx.pic
  • 商品图标
  • └ auction_title
  • String
  • 32
  • 商品标题
  • └ biz_order_id
  • String
  • 312
  • 交易订单号
  • └ claim_fee
  • Number
  • 321
  • 理赔金额
  • └ claim_in_account
  • String
  • 41
  • 理赔收入账户
  • └ claim_no
  • String
  • 421
  • 理赔单号
  • └ claim_refuse_code
  • String
  • 421
  • 理赔拒赔code
  • └ claim_status
  • Number
  • 421
  • 理赔状态
  • └ has_sub_order
  • Boolean
  • 124
  • 是否有子订单
  • └ order_gmt_create
  • Date
  • 12
  • 订单创建时间
  • └ policy_no
  • String
  • 421
  • 保单号
  • └ policy_status
  • Number
  • 412
  • 保单状态
  • └ refund_id
  • String
  • 241
  • 退款I单D
  • └ refund_mail_no
  • String
  • 41
  • 退款物流单号
  • └ refund_post_type
  • String
  • 241
  • 退款寄件方式
  • └ refund_status
  • Number
  • 41
  • 退款状态
  • └ refund_goods_type
  • Number
  • 31
  • 买家退货类型

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlipayBaoxianYfxOrderDetailQueryRequest req = new AlipayBaoxianYfxOrderDetailQueryRequest();
req.setAlipayUserId("2088");
req.setBizOrderId("123");
AlipayBaoxianYfxOrderDetailQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alipay_baoxian_yfx_order_detail_query_response>
    <model>
        <yfx_info>
            <auction_picture_url>xx.pic</auction_picture_url>
            <auction_title>32</auction_title>
            <biz_order_id>312</biz_order_id>
            <claim_fee>321</claim_fee>
            <claim_in_account>41</claim_in_account>
            <claim_no>421</claim_no>
            <claim_refuse_code>421</claim_refuse_code>
            <claim_status>421</claim_status>
            <has_sub_order>124</has_sub_order>
            <order_gmt_create>12</order_gmt_create>
            <policy_no>421</policy_no>
            <policy_status>412</policy_status>
            <refund_id>241</refund_id>
            <refund_mail_no>41</refund_mail_no>
            <refund_post_type>241</refund_post_type>
            <refund_status>41</refund_status>
            <refund_goods_type>31</refund_goods_type>
        </yfx_info>
    </model>
</alipay_baoxian_yfx_order_detail_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

返回
顶部