POST api/ClientApp/trans/order_list
[已完成] 交易流水查询,含 充值/佣金/提现 ,通过类型检索
Request Information
URI Parameters
None.
Body Parameters
TransOrderListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| trans_order_type |
订单类型,Deposit Withdrawal Commission |
string |
None. |
| days |
搜索天数 [7天(默认),30天,90天] |
integer |
None. |
| trade_status |
交易状态 [0-查询所有;3-正在交易; 5-交易成功; 6-交易失败 ] |
integer |
None. |
| last_id |
最后一条记录的ID,传 0 则返回第一页的数据 |
integer |
None. |
| clientType |
客户端类型,默认值:website |
string |
None. |
| clientVersion |
客户端版本,默认值:1.0.0 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"trans_order_type": "sample string 1",
"days": 2,
"trade_status": 3,
"last_id": 4,
"clientType": "sample string 5",
"clientVersion": "sample string 6"
}
Response Information
Resource Description
TransOrderListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| transOrders | Collection of TransOrder |
None. |
|
| code |
1 为成功,其他为失败 |
integer |
None. |
| msg |
请求描述 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"transOrders": [
{
"order_id": 1,
"type": 2,
"trade_status": 3,
"trade_no": "sample string 4",
"user_id": 5,
"currency": "sample string 6",
"amount": 7.0,
"request_time": 8,
"single_fee": 9.0,
"exchange_amount": 10.0,
"exchange_rate": 11.0,
"exchange_currency": "sample string 12"
},
{
"order_id": 1,
"type": 2,
"trade_status": 3,
"trade_no": "sample string 4",
"user_id": 5,
"currency": "sample string 6",
"amount": 7.0,
"request_time": 8,
"single_fee": 9.0,
"exchange_amount": 10.0,
"exchange_rate": 11.0,
"exchange_currency": "sample string 12"
}
],
"code": 1,
"msg": "sample string 2"
}