Cancel Order

DELETE /api/v1/trade/order

Permission: Trade

Weight: 1

Request parameters

Name

Type

Mandatory

Description

symbol

string

YES

symbol

orderId

number

YES

order id to be cancelled

Response format: None

Error code

  • TRADE_INVALID_SYMBOL Invalid symbol.

  • TRADE_PARAMETER_ERROR Parameter error.

  • TRADE_OPERATION_DENIED Operation denied.

Request example

DELETE https://{site}/api/v1/trade/order
{
  "symbol":  "BTC_USDT",
  "orderId":  1234567890
}

Response example

{ 
  "result": true,
  "timestamp": 1566691672311
}

Last updated