- 公共请求参数
- 公共返回结果
- 接口说明模板
- 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
- app-order
- app-settle
- app-fund
- notification-center
- app-setting
- app-geography
获取流水列表(es)
POST
/fund/v1/flow/es
接口变更记录#
变更版本 | 变更时间 | 变更人 | 变更内容 | 备注 |
---|---|---|---|---|
资金模块V1.4.0 | 2024-11-08 | Carr Lei | 上线 |
错误码#
code | msg | msg_cn |
---|---|---|
990001 | parameter validation exception | 入参校验异常 |
990009 | Unauthorized access is prohibited | 禁止未经授权的访问 |
请求结构#
1.
2.
公共参数#
签名方法#
1.
公共返回结果#
接口描述#
1.
接口压测#
实际并发数 | 实际RT | 实际TPS | 频率限制次数(次/秒) |
---|---|---|---|
无 |
请求参数
Body 参数application/json
from
string
开始时间
to
string
结束时间
page
integer
页码
pagesize
integer
每页数量
sql_order_field
string
可选
sql_order_type
string
必需
uuid
string
UUID
wallet_id
string
钱包ID
wallet_type
array[string]
钱包类型
operation_mode_id
array[integer]
资金操作方式ID
示例
{
"page": 1,
"pagesize": 20,
"uuid": "T9237374",
"wallet_id": "01Zo-pWGzzBteK",
"wallet_type": [
"transaction"
],
"operation_mode_id": [
100108
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/fund/v1/flow/es' \
--header 'Content-Type: application/json' \
--data-raw '{
"page": 1,
"pagesize": 20,
"uuid": "T9237374",
"wallet_id": "01Zo-pWGzzBteK",
"wallet_type": [
"transaction"
],
"operation_mode_id": [
100108
]
}'
返回响应
🟢200成功
application/json
Body
code
integer
错误码
success
boolean
是否成功
data
object
数据
data
array [object {29}]
必需
totalCounts
integer
总数
msg
string
消息
traceId
string
追踪ID
示例
{
"code": 0,
"success": true,
"data": {
"data": [
{
"id": "SN20240517031432660009078",
"appid": "appb8fa5904d915",
"uuid": "P5082199",
"client_info": {
"uuid": "P5082199",
"firstname": "mk",
"lastname": "mk"
},
"capital_source": "system",
"capital_target": "wallet",
"currency": "AUD",
"original_balance": 0,
"service_charge": 0,
"balance_change": 100,
"existing_balance": 100,
"order_serial": "DP202405175000898837",
"remark": null,
"wallet_id": "IJmJ-tu22x7FLI",
"wallet_type": "transaction",
"create_time": "2024-05-17 03:14:33",
"utype": "client",
"channel_code": null,
"audit_rate": 1,
"base_currency_service_charge": 0,
"base_currency_balanceChange": 100,
"operator_role": "broker",
"operation_mode_id": 100108,
"trade_serial": null,
"trade_account": null,
"trade_accountName": null,
"trade_client_info": {},
"trade_currency": null,
"extend_remark": null
}
],
"totalCounts": 1
},
"msg": "success",
"traceId": "0e74799c1cf14fa58fd3223eb54f775f.286.17274331329723869"
}
修改于 2025-04-16 06:20:22