Skip to main content
POST
/
cancel-order
cURL
curl --request POST \
  --url https://gateway.architect.exchange/orders/cancel-order \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "oid": "<string>"
}
'
{
  "cxl_rx": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.architect.exchange/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

User session token

Body

application/json

Identifier of the order to cancel; either oid (server order id) or cid (client order id).

oid
string
required

Strong type for Order IDs to prevent mixing with other string values

Order IDs are ULIDs with a prefix:

  • Regular orders: O-
  • Liquidation orders: L-

Response

Order cancel requested

cxl_rx
boolean
required

Whether the cancel request has been accepted; e.g. true, false