---
title: "Delete Order"
method: DELETE
path: "/stores/{storeId}/orders/{orderId}"
tags: ["Orders"]
---

# Delete Order

`DELETE /stores/{storeId}/orders/{orderId}`

Delete an order from the system. The orderId parameter can be either the external order ID you provided when creating the order, or the internal Redo order ID returned from the create order response. Requires the [`orders_write`](/docs/api-reference/scopes) scope.

## Response `200`

Success

- OrdersApiDeleteOrderResponseSchema — Successful order deletion response.
  - `success` boolean, required — Indicates successful deletion.
  - `orderId` string, required — Internal Redo order ID.
  - `externalOrderId` string, required — External order ID that was deleted.

## Other responses

- `401` — Unauthorized (invalid or missing API token)
- `404` — Order not found
- `default` — Error

---

[API](https://skmtc.dev/redoapp/apis/redo-api.md) · [All operations](https://skmtc.dev/redoapp/apis/redo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/redoapp/redo-api/revisions/119714540a45/schema)
