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

Authorizations

Authorization
string
header
required

User session token

Body

application/json
oid
string
required

Order ID of the order to replace; e.g. "ORD-1234567890"

p
string | null

New price for the replacement order (optional, inherits from original if not provided)

po
boolean | null

Whether the replacement order is post-only (optional, inherits from original if not provided)

q
integer<int64> | null

New quantity for the replacement order (optional, inherits from original if not provided)

Required range: x >= 0
tif
string | null

New time in force for the replacement order (optional, inherits from original if not provided)

Response

Order replaced successfully

oid
string
required

Order ID of the new replacement order; e.g. "ORD-1234567890"