Orders
Create, modify, cancel, and query orders including status, trades, and activity history.
get
/v1/cefi/ordersGet ordersFetches all orders for a client entered within the past 24 hours on the exchange. A filter can be provided to limit the results.post/v1/cefi/ordersCreate orderCreate a new order for a specific instrument.patch/v1/cefi/ordersModify orderModify an existing active order request.delete/v1/cefi/orders/{ref_id}Cancel orderBegins the cancellation process of an existing active order from the exchange. N.B. it is still possible to receive trades on the order that is being canceled.delete/v1/cefi/orders/allCancel all ordersRequests cancellation of every active order belonging to the authenticated client. Processed asynchronously: the gateway dispatches a cancel per order and returns 202 Accepted immediately, listing the orders a cancel was dispatched for in accepted. Per-order completion is reported on the order event stream (cancel reports), not in this response. N.B. it is still possible to receive trades on an order while it is being canceled.get/v1/cefi/orders/activeActive ordersQuery for orders currently active on the exchange.get/v1/cefi/orders/tradeAll order tradesFetches all trades for a client executed within the past 24 hours on the exchange.get/v1/cefi/orders/activityAll order activityFetches all activity (trades, confirms, rejects, cancels, modifications) for a client's orders.get/v1/cefi/orders/status/{ref_id}Status orderFetches the current status of a specific order identified by ref_id.