GET api/order/list/{memberId}/{lang}?pageNumber={pageNumber}&pageSize={pageSize}
獲取訂單列表
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
memberId |
会员ID |
integer |
Required |
lang |
語言 |
string |
Required |
pageNumber |
頁碼 |
integer |
Default value is 1 |
pageSize |
每頁記錄數 |
integer |
Default value is 15 |
Body Parameters
None.
Response Information
Resource Description
獲取訂單列表
ReturnResultOfPageListOfOrderListContractName | Description | Type | Additional information |
---|---|---|---|
data | PageListOfOrderListContract |
None. |
|
code |
状态码:100成功,其他自定义 |
integer |
None. |
message |
提示消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "data": { "total_count": 1, "page": 2, "page_size": 3, "data_list": [ { "docno": "sample string 1", "paymentstatus": "sample string 2", "bookingtime": "2024-12-23T20:01:59.8777149+08:00", "orderlist": [ { "itemtype": "sample string 1", "title": "sample string 2", "starttime": "sample string 3", "endtime": "sample string 4", "commentamt": 5, "pid": "sample string 6", "isticketno": 7 }, { "itemtype": "sample string 1", "title": "sample string 2", "starttime": "sample string 3", "endtime": "sample string 4", "commentamt": 5, "pid": "sample string 6", "isticketno": 7 } ] }, { "docno": "sample string 1", "paymentstatus": "sample string 2", "bookingtime": "2024-12-23T20:01:59.8777149+08:00", "orderlist": [ { "itemtype": "sample string 1", "title": "sample string 2", "starttime": "sample string 3", "endtime": "sample string 4", "commentamt": 5, "pid": "sample string 6", "isticketno": 7 }, { "itemtype": "sample string 1", "title": "sample string 2", "starttime": "sample string 3", "endtime": "sample string 4", "commentamt": 5, "pid": "sample string 6", "isticketno": 7 } ] } ], "page_count": 1 }, "code": 1, "message": "sample string 2" }