Cancel orders
REQUEST wss://ws.bitvavo.com/v2 privateCancelOrders
Cancels multiple orders for the specified market or the account.
info
Authentication required. To send messages, you need to authenticate connection.
Rate limit weight points: N/A
Request
- Schema
- Example (body)
Body
actionstring
Set value to privateCancelOrders.
Example:
privateCancelOrdersrequestIdinteger
Your identifier for the request.
Example:
1marketstringrequired
The market in which to cancel the orders.
If not specified, all open orders are canceled.
Example:
BTC-EURoperatorIdinteger<int64>required
Your identifier for the trader or the bot within your account that made the request.
Example:
543462{
"action": "privateCancelOrders",
"requestId": 1,
"market": "BTC-EUR",
"operatorId": 543462
}
Response
- Schema
- Example (body)
Schema
actionstring
The action performed.
Example:
privateCancelOrdersrequestIdinteger
Your identifier for the request.
Example:
1response object
orderIdstring<UUID>
Bitvavo identifier of the canceled order.
Example:
1be6d0df-d5dc-4b53-a250-3376f3b393e6operatorIdinteger<int64>
Your identifier for the trader or the bot within your account that made the request.
Example:
543462{
"action": "privateCancelOrders",
"requestId": 1,
"response": {
"orderId": "1be6d0df-d5dc-4b53-a250-3376f3b393e6",
"operatorId": 543462
}
}