POST
/
v2
/
eth
/
limitorders
/
edit
Edit Ethereum Limit Order
curl --request POST \
  --url http://localhost:2400/v2/eth/limitorders/edit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "UserID": "user-123",
  "orderCode": "uuid-...",
  "newPrice": 1550.75
}'
{
  "success": true,
  "message": "Limit order updated successfully."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Limit order updated successfully.

The response is of type object.