跳轉至

撤銷委託

地址: /openApi/contract/cancel

接收參數

需要

提交方式:post

提交參數

參數名 是否必需 類型 範例 說明
order_ids string 1,2,3 訂單號
symbol string BTC-USDT 交易對

返回參數

參數名 是否必需 類型 範例 說明
errno int 0 返回狀態碼
errmsg string 成功 返回資訊
result object 見示例 返回數據

result參數

參數名 是否必需 類型 範例 說明
success array ["order_id1","order_id2"] 成功的單號數組
failed array ["order_id1","order_id2"] 失敗的單號陣列

返回範例

JSON
{
    "errno": 0,
    "errmsg": "success",
    "result": {
        "success": [
            "order_id1",
            "order_id2"
        ],
        "failed": [
            "order_id1",
            "order_id2"
        ]
    }
}