Tamio

Delete an order

DELETE https://api.tamio.com/v2/orders/{uuid}

Permanently deletes an unfulfilled order. This action cannot be undone. Fulfilled orders cannot be deleted — use refund operations on their associated invoices instead.

Path Parameters

uuid string*

UUID of the unfulfilled order to delete

Responses

200 Order deleted successfully

Order deleted successfully

status integer
400 Validation or business-logic error.
401 Missing or invalid API key
/orders/{uuid}
1const response = await fetch("https://api.tamio.com/v2/orders/{uuid}", {
2 method: "DELETE",
3 headers: {
4 "Authorization": "Bearer YOUR_API_KEY",
5 "Accept": "application/json"
6 }
7});
8const data = await response.json();
Responses
{
  "status": 200
}