跳至主要内容

追加申購

HTTP 請求

POST/v5/earn/pwm/investment-plan/invest-more

請求參數

參數是否必需類型說明
planIdtruestring投資計劃ID,須為 Active 狀態
accountTypefalsestring資金來源賬戶類型,默認 FUND
categorytruestring產品類型
productIdtruestring產品ID
amounttruestring追加金額(本位幣)
orderLinkIdtruestring用戶自定義訂單ID,最長36字符,用於防重

響應參數

參數類型說明
planIdstring投資計劃ID
categorystring產品類型
productIdstring產品ID
coinstring申購幣種
amountstring追加金額(本位幣)
statusstring申購狀態:Success / Pending / failed
orderLinkIdstring用戶自定義訂單ID
orderIdstring系統生成的訂單ID

請求示例

POST /v5/earn/pwm/investment-plan/invest-more HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1741651200000
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json

{
"planId": "10001",
"accountType": "FUND",
"category": "equityFund",
"productId": "2001",
"amount": "20000.00",
"orderLinkId": "xxx"
}

響應示例

{
"retCode": 0,
"result": {
"planId": "10001",
"category": "equityFund",
"productId": "2001",
"coin": "USDT",
"amount": "20000.00",
"status": "Pending",
"orderId": "ORD20241115002",
"orderLinkId": "xxx"
}
}