- Account Trade Auth
- Accounts
- Get Account Request List(获取用户开户申请列表)
- Retrieve Account Application Information(获取证券账户开户资料信息)
- Get Account Contact Info(获取账户联系方式)
- Get Account List(获取用户账户列表)
- Get Account Status(获取账户状态)
- Get Account Bcan Information(获取账户 Bcan 信息)
- Query Account List V2(获取账户列表V2)
- Update Application(修改开户资料)
- Submit Application(提交开户申请资料)
- Update Account State/Disable Account
- Submit Application V2(提交开户申请资料)
- Update Application V2(修改开户资料)
- Close Account(注销账户)
- Open additional account(增开账户)
- get account opening application information (开户申请信息获取)
- Query Account Risk And Pi Info(获取用户风险测评以及Pi信息)
- Asset
- Temporary Adjustment(临时调账)POST
- Account Cash Balance Unfreeze Debit(账户资金解冻扣款)POST
- Get All Users Cash Balance (获取所有用户现金信 息)GET
- Query Account Cash Balance(账户现金查询)GET
- Query Account Position(账户持仓查询)GET
- Account Cash Balance Adjustment(账户资金调账)POST
- Account Position Adjustment(账户持仓调账,只支持股票)POST
- Account Cash Balance Freeze(账户资金冻结)POST
- Account Cash Balance Unfreeze(账户资金解冻)POST
- Account Stock Transaction History(账户股票流水)POST
- Account Cash Transaction History(账户资金流水)POST
- Account Stock Freeze Transaction History(账户股票冻结流水)GET
- Account Cash Freeze Transaction History(账户资金冻结流水)GET
- Query Limited Amount Information(限额信息查询)GET
- Query Buy Power(购买力查询)GET
- Query Short Sellable Quantity(可卖空数量查询)GET
- Query OB Account Cash Balance(账户现金详情查询)【定制非通用】POST
- Query Account Total Asset(账户资产查询)POST
- Query account risk limit config(查询用户限额信息)GET
- Query Account Total Asset OverView(账户资产总览)GET
- Query HashKey Cash List(查询hashkey的现金列表)GET
- Create account risk limit config(创建用户限额信息)POST
- Update account risk limit config(更新用户限额信息)POST
- Temp Adjust 临时调账新增POST
- Temp Adjust Expire 临时调账手动失效POST
- Billing
- Cash And Stocks Transfer
- Add Bank Card
- Delete Bank Card
- Region Bank
- Get User Bank Card List
- User Card Detail
- Deposit Detail
- Submit Deposit Application
- Deposit Application List
- Update Bank Card
- Obtain the deposit information
- Withdraw Records
- Withdraw Detail
- Cancel Withdraw Application
- Get Exchange
- Cancel Deposit
- Submit Withdrawal Applylication
- Information acquisition before withdrawal v3 (提现前信息获取V3)
- Update Bank Card
- Submit Files For Review Withdraw Card
- Currency List
- Exchange records(兑换记录)
- File
- IPO
- Member Core
- Trade
- Trade Websocket Notification
- Historical Order Inquiry (历史订单查询)
- Place Order (委托下单)
- Modify Order (修改订单)
- Withdraw Order (撤销订单)
- Order Details (订单详情)
- Today's Order Inquiry (当日订单查询)
- Estimated Maximum Purchase Quantity (预估最大购买数量)
- Today's Trade Detail Inquiry (当日成交明细查询)
- Historical Trade Detail Inquiry (历史成交明细查询)
- Query User Trade Credit(查询客户交易额度v1)
- Message
Temp Adjust 临时调账新增
POST
/ /v1/risk_event/temp_adjust
Asset
Request
Body Params application/json
security_type
string
required
Example:
CASH、STOCK
cash_adjusts
object
required
currency
string
required
Example:
USD
direction
string
required
Example:
CREDIT、DEBIT
incurred_amount
string
required
Example:
1000.00
biz_code
string
required
Example:
CASH_ADJ_001
remark
string
required
Example:
remark
expire_time
number
required
Example:
1710000000
account_no
string
required
Example:
H10240001
stock_adjusts
object
required
direction
string
required
Example:
CREDIT、DEBIT
counter_id
string
required
Example:
ST/US/AAPL
incurred_quantity
string
required
Example:
100
biz_code
string
required
Example:
STOCK_ADJ_001
remark
string
required
Example:
remark
currency
string
required
Example:
USD
cost_price
string
required
Example:
200.00
expire_time
number
required
Example:
1710000000
position_side
string
required
Example:
LONG
account_no
string
required
Example:
H10240001
op_user
string
required
Example:
admin
Example
{
"security_type": "CASH、STOCK",
"cash_adjusts": {
"currency": "USD",
"direction": "CREDIT、DEBIT",
"incurred_amount": "1000.00",
"biz_code": "CASH_ADJ_001",
"remark": "remark",
"expire_time": 1710000000,
"account_no": "H10240001"
},
"stock_adjusts": {
"direction": "CREDIT、DEBIT",
"counter_id": "ST/US/AAPL",
"incurred_quantity": "100",
"biz_code": "STOCK_ADJ_001",
"remark": "remark",
"currency": "USD",
"cost_price": "200.00",
"expire_time": 1710000000,
"position_side": "LONG",
"account_no": "H10240001"
},
"op_user": "admin"
}Responses
🟢200OK
*/*
Body
adjust_no
string
required
code
string
required
Example:
PARAM_ERROR,STOCK_NOT_EXISTS,SAVE_ERROR,SUCCESS
message
string
required
request_id
string
required
Example
{
"adjust_no": "string",
"code": "PARAM_ERROR,STOCK_NOT_EXISTS,SAVE_ERROR,SUCCESS",
"message": "string",
"request_id": "string"
}Modified at 2025-04-23 09:07:15