{
"pageNo": 1,
"pageSize": 15,
"channelId": "12306",
"startDate":"2021-11-14 00:00:00",
"endDate":"2021-12-13 23:59:59"
}
curl --location --request POST '/external/order/list/get' \
--header 'appId;' \
--header 'timestamp;' \
--header 'sign;' \
--header 'appKey: {{appKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"pageNo": 1,
"pageSize": 15,
"channelId": "12306",
"startDate":"2021-11-14 00:00:00",
"endDate":"2021-12-13 23:59:59"
}'
{
"code": 0,
"message": "success",
"data": {
"currentPage": 1,
"pageSize": 15,
"totalPage": 8,
"totalCount": 115,
"list": [
{
"id": "85fd72f95c0e11eca61600163e106b20",
"corpid": "xxx",
"salesId": 444256224170048,
"customerId": 444926101606464,
"channelId": "12306",
"channelName": "12306",
"shopId": "TEST",
"shopName": "测试店铺",
"orderId": "TEST_12345678",
"orderPrice": 0.01,
"status": 2,
"orderTime": "2021-12-10 15:53:29",
"customDefine": [
{
"key": "1191",
"value": "xxx"
},
{
"key": "1190",
"value": "1"
}
],
"goodsList": [
{
"goodName": "测试商品",
"imageUrl": "https://xxx",
"goodPrice": 0.01,
"num": 1
}
]
}
]
}
}