Interface IDEXCanceledOrder

Response to "cancel order" requests (single or multiple orders). Includes one object for each successfully canceled order.

interface IDEXCanceledOrder {
    status: "canceled" | "notFound";
    orderId?: string;
    clientOrderId?: string;
}

Properties

status: "canceled" | "notFound"

Current order status, either canceled or notFound if provided ID was not on the books

See

enum OrderStatus

orderId?: string

Exchange-assigned order identifier. Will not be present for client order IDs that were not found on the books and were not filled

clientOrderId?: string

If the order was created with a clientOrderId, it will be included within the cancel object when cancelled by any of your requests.