Skip to main content

Subscribe Investment Plan

HTTP Request

POST/v5/earn/pwm/investment-plan/subscribe

Request Parameters

ParameterRequiredTypeComments
planIdtruestringInvestment plan ID. Must be in PendingSubscription status
accountTypefalsestringSource account type. Default: FUND
orderLinkIdtruestringUser-defined order ID, max 36 characters, used for idempotency

Response Parameters

ParameterTypeComments
planIdstringInvestment plan ID
statusstringPlan status after subscription. Changes to Active upon first successful subscription
orderLinkIdstringUser-defined order ID

Request Example

POST /v5/earn/pwm/investment-plan/subscribe 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",
"orderLinkId": "xxx"
}

Response Example

{
"retCode": 0,
"result": {
"planId": "10001",
"status": "Active",
"orderLinkId": "xxx"
}
}