- 公共请求参数
- 公共返回结果
- 接口说明模板
- app-user
- 用户相关接口
- KYC税务表单接口
- 工单相关接口
- 沟通记录相关接口
- 审核相关接口
- KYC资料相关接口
- 通行证相关接口
- 风险等级测评接口
- 银行卡相关接口
- 大额投资者认证接口
- 零售客户行情订阅相关接口
- app-client
- 用户相关接口
- 审核相关接口
- 工单相关接口
- KYC税务表单接口
- 沟通记录相关接口
- KYC资料相关接口(临时保存)
- 通行证相关接口
- 风险等级测评接口
- 银行卡相关接口
- 大额投资者认证接口
- 零售客户行情订阅相关接口
- 交易系统相关接口
- 券商注册
- app-control
- app-report
- app-trading
- app-common
- app-platform
- app-notice
- app-storage
- app-public-fund
- pub账号相关接口
- pub入金相关接口
- pub转账相关接口
- pub-inte相关接口
- pub订单相关接口
- pub钱包相关接口
- pub出金相关接口
- app-order
- app-settle
- app-fund
- notification-center
- app-setting
- app-geography
(pub)获取钱包流水
POST
/pub-fund/v1/wallet/flow
pub钱包相关接口
接口变更记录#
变更时间 | 变更人 | 变更内容 | 备注 |
---|---|---|---|
2023-09-11 | XXX | 初始化文档 |
请求结构#
1.
2.
公共参数#
签名方法#
1.
公共返回结果#
接口描述#
1.
错误码#
接口压测#
请求参数
Body 参数application/json
from
string
开始时间
operationMode
array[string]
可选
operationType
array[string]
可选
orderSerial
string
订单号
page
integer <int32>
必需
pagesize
integer <int32>
必需
to
string
结束时间
uuid
string
必需
walletId
string
可选
walletType
string
可选
示例
{
"from": "string",
"operationMode": [
"string"
],
"operationType": [
"string"
],
"orderSerial": "string",
"page": 0,
"pagesize": 0,
"to": "string",
"uuid": "string",
"walletId": "string",
"walletType": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/pub-fund/v1/wallet/flow' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200OK
application/json
Body
code
integer <int32>
可选
data
object (PageData«WalletFlowResp»)
可选
data
array[object (WalletFlowResp) {30}]
可选
totalCounts
integer <int64>
可选
msg
string
可选
success
boolean
可选
示例
{
"code": 0,
"data": {
"data": [
{
"agents": "string",
"auditRate": 0,
"balanceChange": 0,
"capitalFlow": "string",
"channelCode": "string",
"createTime": "string",
"currency": "string",
"existingBalance": 0,
"id": "string",
"isDeleted": true,
"microTime": 0,
"operationMode": "string",
"operationType": "string",
"orderSerial": "string",
"originalBalance": 0,
"remark": "string",
"remark_1": "string",
"sales": "string",
"serviceCharge": 0,
"sync": 0,
"tradeAccount": "string",
"tradeAccountName": {
"firstname": "string",
"lastname": "string",
"uuid": "string"
},
"tradeCurrency": "string",
"tradeSerial": "string",
"usdBalanceChange": 0,
"usdServiceCharge": 0,
"utype": "string",
"uuid": "string",
"walletId": "string",
"walletType": "string"
}
],
"totalCounts": 0
},
"msg": "string",
"success": true
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
修改于 2023-09-11 01:55:41