Cancel All Orders
DELETE
https://api.onetrading.com/fast/v1/account/orders
instrument_code
, a list of ids
representing order_id or a list of client_ids
as query parameters. The instrument_code
parameter will only cancel orders for the given instrument, while the ids
and client_ids
parameter can be used to specify various orders regardless to which markets they belong. Calling this endpoint without any of the optional parameters will cancel all orders across all markets for the account. Calling this endpoint with more than one of the specified query parameters is not supported.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://api.onetrading.com/fast/v1/account/orders'
Response Response Example
200 - Success
[
"7749a0ff-9a5f-41ac-a1a5-dc031a70091c",
"737f07d9-1711-49d0-a834-80b88329c101"
]
Request
Query Params
instrument_code
string
optional
Example:
BTC_EUR
ids
string
optional
Example:
[d1efc79d-f78d-4a9d-a4c0-dbe76c9a4e6f,8ada8f2d-56ea-4b24-bfd4-06723dfbb3be]
client_ids
string
optional
Example:
[d1efc79d-f78d-4a9d-a4c0-dbe76c9a4e6f,8ada8f2d-56ea-4b24-bfd4-06723dfbb3be]