撤单
限速规则 10次/1s (UID)
描述
撤单
HTTP请求
- POST /api/v2/spot/trade/cancel-order
请求示例
curl -X POST "https://api.bitget.com/api/v2/spot/trade/cancel-order" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json" \
-d '{"symbol": "BTCUSDT","orderId": "121211212122"}'
请求参数
参数名 | 参数类型 | 是否必须 | 描述 |
---|---|---|---|
symbol | String | 是 | 交易对名称,如BTCUSDT 当 tpslType 为 tpsl 时,此项为非必填 |
tpslType | String | 否 | 订单类型 默认:normal normal :普通单 tpsl :止盈止损单 |
orderId | String | 否 | 订单ID orderId与clientOid二选一 当 tpslType 为 tpsl 时,此项为必填 |
clientOid | String | 否 | 客户自定义ID orderId与clientOid二选一 |
返回示例
{
"code": "00000",
"message": "success",
"requestTime": 1234567891234,
"data": {
"orderId": "121211212122",
"clientOid": "xx001"
}
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
orderId | String | 订单ID |
clientOid | String | 自定义订单ID |