Deposit Investment
POSTπ Trading
Deposit into an investment product.
Note: Check
minSizeandincrementalSizefrom Query Investment Products before depositing.
Request Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
| productId | String | Yes | Product ID |
| amount | Double | Yes | Investment amount |
| renew | Boolean | Yes | Whether to auto-renew |
| day | Integer | Yes | Investment duration in days |
Response Contentβ
| Name | Type | Description |
|---|---|---|
| success | Boolean | Whether the deposit was processed successfully |
example
POST
https://api.btse.com/spot/api/v3.3/invest/depositRequest
{
"productId": "OPENETH00001",
"amount": 1,
"renew": false,
"day": 1
}
Response
{
"success": true
}