---
title: "Cancel Order (Combined)"
method: POST
path: "/orders/cancel"
tags: ["Trading"]
---

# Cancel Order (Combined)

`POST /orders/cancel`

Cancel one open order by either internal orderId or client-provided clientOrderId.

## Request body

- union
  - object
    - `orderId` string, uuid, required — Internal order ID. Provide exactly one of orderId or clientOrderId.
    - `clientOrderId` string — Client-provided order ID from order creation. Provide exactly one of orderId or clientOrderId.
  - object
    - `orderId` string, uuid — Internal order ID. Provide exactly one of orderId or clientOrderId.
    - `clientOrderId` string, required — Client-provided order ID from order creation. Provide exactly one of orderId or clientOrderId.

## Response `200`

Order successfully cancelled

- CancelOrderResponseDto
  - `message` string, required — Confirmation message for the cancelled order

## Other responses

- `400` — Invalid identifier input or order cannot be cancelled
- `401` — User not authenticated or not the order owner
- `404` — Order not found
- `500` — Server error during cancellation

---

[API](https://skmtc.net/limitless-labs-group/apis/limitless-exchange-api.md) · [All operations](https://skmtc.net/limitless-labs-group/apis/limitless-exchange-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/limitless-labs-group/limitless-exchange-api/versions/f60847044e0d/schema)
