Skip to main content
Version: V3

Cancel Order (TRADE)

  • DELETE /api/v3/order

Weight(IP): 1, Weight(UID): 1

Request parameters

ParameterTypeRequired?Description
orderIdLongConditionalOrder ID to cancel. Required when origClientOrderId is not supplied.
origClientOrderIdStringConditionalClient order ID to cancel. Required when orderId is not supplied.

Request example

curl -X DELETE "https://api-spot.weex.com/api/v3/order?symbol=BTCUSDT&orderId=702345678901234567" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \

Response parameters

FieldTypeDescription
orderIdLongCancelled order ID.
statusStringFinal status (e.g. CANCELED).

Response example

{
"orderId": 702345678901234567,
"status": "CANCELED"
}