查询订单列表

更新时间:2024-01-12 02:41:52下载pdf

本文介绍查询订单列表的 API。

接口描述

根据商城 code、店铺 code 和买家 UID 等数据,查询订单列表。

接口地址

GET: /v1.0/mall/plugin/order/search

请求参数

参数名类型参数位置是否必填说明
mall_codeStringquerytrue商城 code
shop_codeStringquerytrue店铺 code
user_idStringquerytrue买家 UID
page_noIntegerqueryfalse分页查询页数
page_sizeIntegerqueryfalse分页查询每页个数

返回参数

参数名类型说明
resultOrderListPageOpenApiVO返回结果

result 说明

参数名类型说明
totalInteger总数
data_listList订单列表

data_list 说明

参数名类型说明
mall_codeString商城 code
shop_codeString店铺 code
order_idString订单号
pay_statusString支付状态
delivery_statusString发货状态
created_timeString创建时间
current_total_priceBigDecimal当前总价格
total_shipping_priceBigDecimal总邮费
total_tax_priceBigDecimal总税费
total_priceBigDecimal总价格
currencyString币种
delivery_listList物流信息
cancel_reasonString订单取消原因
canceled_timeLong订单取消时间

delivery_list 说明

参数名类型说明
logistics_companyString快递公司
logistics_noString快递单号
logistics_urlString链接

请求示例

GET: /v1.0/mall/plugin/order/search?mall_code=MALL_CODE&shop_code=SHOP_CODE&user_id=USER_ID&page_no=1&page_size=10
{
  "mall_code": "testMallCode",
  "shop_code": "testShopCode",
  "user_id": "testUserId",
  "page_no": 1,
  "page_size": 10
}

返回示例

{
    "data_list": [
        {
            "created_time": "20220901",
            "subtotal_price": 2,
            "canceled_time": "20220902",
            "total_price": 2,
            "shop_code": "testShopCode",
            "delivery_list": [
                {
                    "logistics_no": "1Z2345",
                    "logistics_url": "https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1=1Z2***",
                    "logistics_company": "USPS"
                }
            ],
            "total_tax_price": 1,
            "total_shipping_price": 1,
            "pay_status": "paid",
            "cancel_reason": "取消原因",
            "mall_code": "testMallCode",
            "current_total_price": 10,
            "currency": "USD",
            "order_id": "testOrderId",
            "delivery_status": "shipped"
        }
    ],
    "total": 100
}

错误码

参考 错误码