# Query Order List

# Dxplaination of Interface Call Request

Interface Force Check Source IP

http请求方式:POST
https://api.weixin.qq.com/shop/pay/getorderlist?access_token=xxxxxxxxx

# Request parameters

{
    "begin_create_time": 1648137600,
    "end_create_time": 1648173600,
    "last_index": "12345",
    "page_size": 10,
    "mchid":"1230000109"
}

# Examples of back-up

{
    "errcode": 0,
    "errmsg":"ok",
    "has_more": true,
    "last_index":"12345",
    "trade_no_list": [
        "12345",
        ....
    ]
}

# Dxplaination of request parameters

parameter type Is it compulsory? Introductions
last_index string no Index value returned last request during paging
page_size number yes Number of orders per page, maximum 100
begin_create_time number yes Start creation time, second time stamp, (start and end time cannot be more than 1 day apart)
end_create_time number yes Final creation time, second timestamp, (start and end time cannot be more than 1 day apart)
mchid string no Weixin Mini Program Weixin Mini Program

# Dxplaination of callback parameters

parameter type Introductions
errcode number Error code
errmsg string Error message
trade_no_list Array string List of transaction numbers
has_more bool Is there another page?
last_index string Current index value