Cancel All Open Orders

Cancel all open orders orders under exchange client

DELETE https://api.ajaib.co.id/coin/internal/v1/order/open

Functionality: Cancels or withdraws a list of all open orders belonging to the exchange client's trading account.

This endpoint's purpose is to allow the client to quickly inform the exchange a batch of instructions under a single request i.e. cancel all open orders.

A successful response returned simply means the exchange has received (order) instructions to act upon. However, it is no guarantee all (order) instructions have been processed successfully.

Authentication: Required

Request Param

Name
Type
Mandatory
Description

symbol

string

Symbol of trading pair. Refer to this

Response Body

Name
Type
Description

success

array of int

List of order ids that success to cancel.

fail

array of int

List of order ids that failed to cancel.

{
    "success": [
        123456,
        789012,
        543210
    ],
    "fail": []
}

Last updated