查询指定日期换标单信息

1、功能名称:查询指定日期换标单信息

2、功能描述:查询指定日期换标单信息

3、请求地址:https://ssl.glitzcloud.com/agent/v1/relabel/relabel/queryByDate

     测试地址:http://gztest.glitzcloud.com/agent/v1/relabel/relabel/queryByDate

4、请求方式:POST

5、请求参数

名称 类型 必填 示例值 更多示例 描述
store_name String The Warehouse USA 仓库名称
date String 2025-06-01 2025-06-01,2025-06-30 支持日期区间最多30天

6、请求示例

            {
                "apikey": "d661bb3e817111e693f10063e06045f",
                "secretkey": "d661bb75817111e69f100163e06045f",
                "date": "2025-10-01",
                "store_name": "TWUSA-Dallas",
                "sign": "3788e15e7795c489febcb28e2393fe1"
            }
        

7、返回格式:JSON

8、返回示例:

正确时的返回JSON数据包如下:

            {
                "status": 200,
                "reqMsg": "ok",
                "result": {
                    "14370": {
                        "order_sn": "REL10072500001",
                        "store_name": "DFW01",
                        "status": "3",
                        "is_take_pictures": "0",
                        "is_allow_shortage": "0",
                        "remark": "",
                        "product": {
                            "23772": {
                                "product_sn_old": "6941327129774",
                                "product_sn_new": "6941327143527",
                                "amount": "48"
                            }
                        },
                        "trouble": [],
                        "charges": [
                            {
                                "id": "10707300",
                                "cost_currency": "usd",
                                "cost_price": "24.00",
                                "cost_amount": "1.00",
                                "real_cost": "24.00"
                            }
                        ]
                    }
                }
            }
        

错误时的返回JSON数据包如下:

            {
                "status": 2085,
                "reqMsg": "The date range is too large.",
                "result": []
            }
        

全局返回码说明