- API接口
- 商户后台
- 运营后台
- 商户管理
- 交易中心
- 账单中心
- 资金账户
- 下啦接口
- 缓存
- 定时
- 其他
- 平台提现管理-详情GET
- 平台资金账户(手续费账户)分页GET
商家提现管理-分页
GET
/admin/merchant/admin/cash/page
请求参数
Query 参数
size
string
每页个数
示例值:
10
current
string
页数
示例值:
1
queryTime
array[string]
搜索时间数组
示例值:
["2022-12-01","2023-01-14"]
applyStatus
string
可选
cashNo
string
提现记录编码
mchNo
string
商户ID
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/admin/merchant/admin/cash/page'
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
null
必需
data
object
必需
records
array [object {14}]
必需
total
integer
必需
size
integer
必需
current
integer
必需
orders
array[string]
必需
hitCount
boolean
必需
searchCount
boolean
必需
pages
integer
必需
示例
{
"code": 0,
"msg": null,
"data": {
"records": [
{
"id": 1,
"applyTime": null,
"cashNo": "TX001673767605337",
"originalCurrency": "USD",
"amt": 2,
"cashCurrency": "CNY",
"rate": null,
"free": null,
"actualAmt": null,
"applyStatus": "WAIT",
"remark": null,
"createTime": "2023-01-16 15:26:45"
}
],
"total": 1,
"size": 10,
"current": 1,
"orders": [],
"hitCount": false,
"searchCount": true,
"pages": 1
}
}
修改于 2023-02-13 08:31:17