Orders
Cancel Order
Withdraw a resting order from the venue and release its reservation
DELETE
Cancels an order that is still
OPEN or PARTIALLY_FILLED. Only the wallet that placed it can cancel: userAddress must match the order’s owner.
This removes the order from the book and releases the reservation behind it. It does not invalidate the signature on chain. The trader keeps a signed authorization that any venue holding it could still settle until it expires.
To retire the signature itself, use Cancel Orders On Chain. Cancel here for ordinary order management; cancel on chain when the trader wants the authorization gone.
Path Parameters
string
required
The order’s
orderId.Body Parameters
string
required
Wallet that placed the order.
Response Fields
Returns the cancelled order, withstatus: "CANCELLED" and cancelReason: "USER_CANCELLED". Same shape as Get Order, without the trade arrays.
An order the chain has already retired is cancelled automatically the next time an incoming order could have matched it, with a
cancelReason naming the reason: cancelled on chain, nonce invalidated, or filled on chain. You do not have to clean those up yourself.