查询指定日期退换单信息
1、功能名称:查询指定日期退换单信息
2、功能描述:查询指定日期退换单信息
3、请求地址:https://ssl.glitzcloud.com/agent/v1/orders/return/queryByDate
测试地址:http://gztest.glitzcloud.com/agent/v1/orders/return/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": [
{
"change_sn": "GCR25100160047",
"status": "Completed",
"receive_time": "1760713335",
"product_info": [
{
"product_sn": "6941327128906",
"exp_piece_qty": "1",
"act_piece_qty": "1"
}
]
}
]
}
错误时的返回JSON数据包如下:
{
"status": 2085,
"reqMsg": "The date range is too large.",
"result": []
}