GET app/jhcps/getOrderList
请求:
|
字段 |
名称 |
类型 |
是否必须 |
|
page |
页码 |
int |
是 |
|
pageSize |
每页个数 |
int |
是 |
|
title |
订单标题 |
string |
否 |
|
type |
订单类型(美团:meituan,滴滴:didi) |
string |
否 |
|
order_sn |
订单编号 |
int |
否 |
|
order_id |
第三方订单id |
string |
否 |
|
status |
状态 |
string |
payed:已付款;refunded:已退款;completed:已完成;settled:已结算 |
响应:
{
“code”: 0,
“data”: {
“list”: [
{
“id”: 1,
“created_at”: null,
“updated_at”: null,
“order_sn”: 183321231,
“order_id”: “123123”,
“data_string”: “”,
“application_id”: 29,
“user_id”: 1,
“third_user_id”: 2,
“price”: 10000,
“commission_price”: 1000,
“type”: “meituan”,
“title”: “测试订单”,
“status”: “payed”,
“local_settle_at”: null
}
],
“total”: 1,
“page”: 0,
“pageSize”: 0,
“next_url”: “”
},
“msg”: “获取成功”
}