Atomic cancel orders
REQUEST wss://ws.bitvavo.com/v2 privateAtomicCancelOrders
Cancels all open orders to buy or sell in the specified market as a single atomic request. The request is processed in strict arrival order and executed without interleaving with other operations.
Authentication required. To send messages, you need to authenticate connection.
Rate limit weight points: 100
Request
- Schema
- Example (body)
Body
Set value to privateAtomicCancelOrders.
privateAtomicCancelOrdersYour identifier for the request.
1The market in which to cancel all orders on the selected side.
BTC-EURCancels all buy orders or all sell orders in specified market.
Possible values: [buy, sell]
Your identifier for the trader or the bot within your account that made the request.
543462{
"action": "privateAtomicCancelOrders",
"requestId": 1,
"market": "BTC-EUR",
"side": "buy",
"operatorId": 543462
}
Response
- Schema
- Example (body)
Schema
- Array [
- ]
The action performed.
privateAtomicCancelOrdersYour identifier for the request.
1response object[]
An array with the list of canceled orders.
Bitvavo identifier of the canceled order.
1be6d0df-d5dc-4b53-a250-3376f3b393e6Your identifier for the trader or the bot within your account that made the request.
543462{
"action": "privateAtomicCancelOrders",
"requestId": 1,
"response": [
{
"orderId": "1be6d0df-d5dc-4b53-a250-3376f3b393e6",
"operatorId": 543462
}
]
}