- 公共请求参数
- 公共返回结果
- 接口说明模板
- 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
查询交易账号
开发中
POST
/client/v2/trading/funding/account/get
接口变更记录#
变更版本 | 变更时间 | 变更人 | 变更内容 | 备注 |
---|---|---|---|---|
V1.2.0 | 2024-09-24 | fain mo | 上线接口 |
错误码#
code | msg | msg_cn |
---|---|---|
300008 | Trade system error. | 交易系统异常 |
请求结构#
1.
2.
公共参数#
签名方法#
1.
公共返回结果#
接口描述#
1.
接口压测#
实际并发数 | 实际RT | 实际TPS | 频率限制次数(次/秒) |
---|---|---|---|
无 |
请求参数
Body 参数application/json
client_id
array[string]
客户ID列表
account_id
array[string]
账户ID列表
omnibus_account_id
array[string]
综合账户ID列表
label
string
账户标签
fund_type
string
资金类型
trading_permission
array[string]
交易权限列表
account_trade_type
string
账户交易类型
start_time
integer
必需
end_time
integer
必需
page
integer
分页页码
page_size
integer
每页显示的记录数
account_status
string
账户状态
示例
{
"client_id": [
"36",
"16",
"99"
],
"account_id": [
"70"
],
"omnibus_account_id": [
"52"
],
"label": "anim mollit occaecat",
"fund_type": "ut dolor esse",
"trading_permission": [
"fugiat ullamco Duis occaecat",
"dolor aliqua Lorem magna est"
],
"account_trade_type": "sed occaecat in cillum",
"start_time": 889905685490,
"end_time": 260811216432,
"page": 94,
"page_size": 39,
"account_status": "Excepteur fugiat"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/client/v2/trading/funding/account/get' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": [
"36",
"16",
"99"
],
"account_id": [
"70"
],
"omnibus_account_id": [
"52"
],
"label": "anim mollit occaecat",
"fund_type": "ut dolor esse",
"trading_permission": [
"fugiat ullamco Duis occaecat",
"dolor aliqua Lorem magna est"
],
"account_trade_type": "sed occaecat in cillum",
"start_time": 889905685490,
"end_time": 260811216432,
"page": 94,
"page_size": 39,
"account_status": "Excepteur fugiat"
}'
返回响应
🟢200成功
application/json
Body
code
integer
返回的状态码
data
object
必需
data
array [object {13}]
必需
totalCounts
integer
总记录数
msg
string
返回信息
success
boolean
请求是否成功
traceId
string
跟踪 ID
示例
{
"code": 0,
"success": true,
"data": {
"total_counts": 1,
"data": [
{
"client_id": "E6580248",
"account_id": "A0000001378SC",
"omnibus_account_id": "A0000001378",
"label": [
"INSTITUTIONAL"
],
"fund_type": "CASH",
"account_trade_type": "SECURITY",
"trading_permission": [
"US_STOCKS",
"HK_STOCKS",
"US_ETFS",
"PUBLIC_FUNDS",
"HK_ETFS"
],
"login": null,
"server_id": null,
"group": null,
"leverage": null,
"create_time": 1728620813817,
"account_status": "ENABLE"
}
]
},
"msg": "success",
"traceId": "e3dcaf8c-4fb9-438d-aad0-5b684230acf5",
"requestId": "608bf6f54c45b1287699ac2cbf206ae4"
}
修改于 2024-10-15 10:27:50