πŸ”’Cancel Order

Cancel an active order.

DELETE https://api.staging.dexilon.io/api/v1/orders

Weight: 1

Either orderId or clientOrderId must be sent.

Query Parameters

Name
Type
Description

symbol*

String

Symbol name.

orderId

Long

Order ID of order.

clientOrderId

String

Client ID of order.

{
    "symbol" : "btc_usdt",
    "amount" : 0.1,
    "side" : "BUY",
    "orderId" : 53905101,
    "price" : 23551.7,
    "clientOrderId" : "1dc17102-2a57-424a-952b-44c18b849f21",
    "averageExecutionPrice" : 23551.6,
    "filled" : 0.04,
    "type" : "LIMIT",
    "status" : "CANCELED",
    "updatedAt" : 1670240315627
}

Last updated