Cancel order
REQUEST wss://ws.bitvavo.com/v2 privateCancelOrder
Cancels an open order.
Authentication required. To send messages, you need to authenticate connection.
You must set either orderId or clientOrderId. If you set both, we use the clientOrderId to identify the order. clientOrderId is only returned if you set it when you created the order.
Rate limit weight points: N/A
Request
- Schema
- Example (body)
Body
Set value to privateCancelOrder.
privateCancelOrderYour identifier for the request.
1The market in which to update an order.
BTC-EURYour identifier for the trader or the bot within your account that made the request.
543462Bitvavo identifier of the order to update.
95d92d6c-ecf0-4960-a608-9953ef71652eYour identifier of the order to cancel.
If both
clientOrderIdandorderIdare set, we use theclientOrderIdto identify the order.
2be7d0df-d8dc-7b93-a550-8876f3b393e9{
"action": "privateCancelOrder",
"requestId": 1,
"market": "BTC-EUR",
"operatorId": 543462,
"orderId": "95d92d6c-ecf0-4960-a608-9953ef71652e",
"clientOrderId": "2be7d0df-d8dc-7b93-a550-8876f3b393e9"
}
Response
- Schema
- Example (body)
Schema
The action performed.
privateCancelOrderYour identifier for the request.
1response object
Bitvavo identifier of the order.
2e7ce7fc-44e2-4d80-a4a7-d079c4750b61Your identifier of the cancelled order. Only returned if specified in the request.
2be7d0df-d8dc-7b93-a550-8876f3b393e9Your identifier for the trader or the bot within your account that made the request.
543462{
"action": "privateCancelOrder",
"requestId": 1,
"response": {
"orderId": "2e7ce7fc-44e2-4d80-a4a7-d079c4750b61",
"clientOrderId": "2be7d0df-d8dc-7b93-a550-8876f3b393e9",
"operatorId": 543462
}
}