Modify Order
Testnet Env
Testnet Env
POST
/api/v1/modifyOrder
Last modified:2024-10-15 06:23:56
Request
Header Params
VESSEL-API-KEY
string
required
Default:
{{API_KEY}}
VESSEL-PASSPHRASE
string
required
Default:
{{API_PASSPHRASE}}
VESSEL-SIGNATURE
string
required
VESSEL-TIMESTAMP
string
required
Body Params application/json
symbol
string
required
oldOrderId
string
required
quantity
string
required
price
string
required
newClientOrderId
string
required
signature
string
required
newOrderRespType
string
required
"FULL" will respond with detailed information about the new order, including all relevant details.
"RESULT" will respond with only the basic result of the order placement.
"ACK" will respond with a quick acknowledgment that the order has been received and is being processed. However, the response will not include the detailed information about the order's status or execution.
Example
{
"symbol": "WBTCUSDT",
"oldOrderId": "78",
"quantity": "0.12",
"price": "36000",
"newClientOrderId": "1701772026638",
"signature": "0xd448022ed479ff946790d172ad21b4e42ad3647ac0c2a73151ffa45242bc9a093462368dafd45725d75f530c519201110f87a074167a5eb7c773d3fa99d3f66c",
"newOrderRespType": "FULL"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://testnet.trade.vessel.finance/api/v1/modifyOrder' \
--header 'VESSEL-API-KEY;' \
--header 'VESSEL-PASSPHRASE;' \
--header 'VESSEL-SIGNATURE;' \
--header 'VESSEL-TIMESTAMP;' \
--header 'Content-Type: application/json' \
--data-raw '{
"symbol": "WBTCUSDT",
"oldOrderId": "78",
"quantity": "0.12",
"price": "36000",
"newClientOrderId": "1701772026638",
"signature": "0xd448022ed479ff946790d172ad21b4e42ad3647ac0c2a73151ffa45242bc9a093462368dafd45725d75f530c519201110f87a074167a5eb7c773d3fa99d3f66c",
"newOrderRespType": "FULL"
}'
Responses
🟢200Success
application/json
Body
orderId
string
required
symbol
string
required
transactTime
string
required
workingTime
string
required
origQty
string
required
type
string
required
side
string
required
executedQty
string
required
status
string
required
NEW: The order has been created and is awaiting processing.
PARTIALLY_FILLED: The order has been partially filled.
FILLED: The order has been completely filled.
CANCELED: The order has been canceled.
REJECTED: The order has been rejected.
EXPIRED: The order has expired.
fills
array [object {3}]
required
action
string
required
price
string
required
qty
string
required
price
string
optional
timeInForce
string
optional
Example
{
"orderId": "3907830740629590000",
"symbol": "BTCUSDT",
"transactTime": "1692865580026",
"workingTime": "1692865580029",
"origQty": "0.001",
"type": "MARKET",
"side": "SELL",
"executedQty": "0.0001",
"status": "PARTIALLY_FILLED",
"fills": [
{
"action": "REJECT",
"price": "0",
"qty": "0.0009"
},
{
"action": "TRADE",
"price": "1000",
"qty": "0.0001"
}
]
}
Modified at 2024-10-15 06:23:56