# 查询订单列表
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/shop/pay/getorderlist?access_token=xxxxxxxxx
# 请求参数
{
"begin_create_time": 1648137600,
"end_create_time": 1648173600,
"last_index": "12345",
"page_size": 10,
"mchid":"1230000109"
}
# 回包示例
{
"errcode": 0,
"errmsg":"ok",
"has_more": true,
"last_index":"12345",
"trade_no_list": [
"12345",
....
]
}
# 请求参数说明
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
last_index | string | 否 | 分页过程中上次请求返回的索引值 |
page_size | number | 是 | 每页订单数,上限100 |
begin_create_time | number | 是 | 起始创建时间,秒级时间戳,(起始和终止时间间隔不能超过1天) |
end_create_time | number | 是 | 最终创建时间,秒级时间戳,(起始和终止时间间隔不能超过1天) |
mchid | string | 否 | 商户号,不填默认拉取小程序系统内所有订单 |
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
trade_no_list | Array string | 交易单号列表 |
has_more | bool | 是否还有下一页 |
last_index | string | 当前索引值 |