Cancel an Existing Order and Send a New Order
Rate limit: 5 requests/second/UID
Description
Cancel an Existing Order and Send a New Order
HTTP Request
- POST /api/v2/spot/trade/cancel-replace-order
Request Example
curl -X POST "https://api.bitget.com/api/v2/spot/trade/cancel-replace-order" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json" \
-d '{
"orderId":"xxxxxxxxxxxxxxx",
"clientOid":"",
"symbol": "BTCUSDT",
"price":"3.24",
"size":"4"
}'
Request Parameter
Parameter | Type | Required | Description |
---|---|---|---|
symbol | String | Yes | Trading pair name, e.g. BTCUSDT All symbols can be returned by Get Symbol Info interface |
price | String | Yes | Limit price The decimal places of price and the price step can be returned by the Get Symbol Info interface |
size | String | Yes | Amount,it represents the number of base coins. |
clientOid | String | No | Client Order ID Either orderId or clientOid is required |
orderId | String | No | Order ID Either orderId or clientOid is required |
newClientOid | String | No | New customed order ID. The idempotency time is 6 hours, only valid when orders are unfilled. |
presetTakeProfitPrice | String | No | Take profit price The decimal places of price and the price step can be returned by the Get Symbol Info interface |
executeTakeProfitPrice | String | No | Take profit execute price The decimal places of price and the price step can be returned by the Get Symbol Info interface |
presetStopLossPrice | String | No | Stop loss price The decimal places of price and the price step can be returned by the Get Symbol Info interface |
executeStopLossPrice | String | No | Stop loss execute price The decimal places of price and the price step can be returned by the Get Symbol Info interface |
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1725345009763,
"data": {
"orderId": "xxxxxxxxxxxxxxx",
"clientOid": null,
"success": "success",
"msg": null
}
}
Response Parameter
Parameter | Type | Description |
---|---|---|
orderId | String | Order ID |
clientOid | String | CLient Order ID |
success | String | operate successsuccess : successfailure : failure |
msg | String | Failure reason |