跳到主要內容

撤销订单

该接口用于订单撤销。

SDK Links

Python
longport.openapi.TradeContext.cancel_order
Rust
longport::trade::TradeContext#cancel_order
Go
TradeContext.CancelOrder
Node.js
TradeContext#cancelOrder

Request

HTTP MethodDELETE
HTTP URL/v1/trade/order

Parameters

Content-Type: application/json; charset=utf-8

NameTypeRequiredDescription
order_idstringYES订单 ID

Request Example

from longport.openapi import TradeContext, Config

config = Config.from_env()
ctx = TradeContext(config)

ctx.cancel_order("709043056541253632")

Response

Response Headers

  • Content-Type: application/json

Response Example

{
"code": 0,
"message": "success",
"data": {}
}

Response Status

StatusDescriptionSchema
200提交成功,订单已委托。None
400撤单被拒绝,请求参数错误。None