> Agent-readable docs index: /llms.txt. Download /docs.zip to grep all markdown files locally.

---
title: "cancelOrder"
description: "Cancel an existing order."
---

<Note>
  Due to Rye requiring Amazon Business accounts be connected to Rye via Amazon's app marketplace, this mutation has been deprecated and will be removed in the future.
  Cancellations can be handled via your Amazon Business account. See our [Connecting your Amazon Business account](/amazon-business/overview) on how to connect your Amazon Business account to Rye
</Note>

***

### Arguments

<ParamField path="input" type={<a href="/api-reference/cancelorderinput">CancelOrderInput!</a>} required>
  The `input` object contains the orderId.
</ParamField>

***

### Returns

<ParamField path="CancelOrderResponse.*" type={<a href="/api-reference/cancelorderresponse">CancelOrderResponse!</a>}>
  Any requested field from the [`CancelOrderResponse`](/api-reference/cancelorderresponse) object.
</ParamField>

***

### Example - request

```json Query arguments
{
  "input": {
    "orderId": "orderId-123-456-789"
  }
}
```

```GraphQL GraphQL
mutation ($input: CancelOrderInput!) {
  cancelOrder(input:$input){
    result {
      ... on CancelAmazonOrderResult { items { amazonOrderId, status, failReason } }
      ... on CancelShopifyOrderResult { status }
    }
    error {
      message
      code
    }
  }
}
```

Calling the endpoint initiates a cancellation attempt. Response below is an example response for an amazon order

### Example - response

```json Response
{
  "data": {
    "cancelOrder": {
      "result": {
        "items": [
          {
            "amazonOrderId": "111-9474033-3741041",
            "status": "CANCEL_PROCESSING",
            "failReason": null
          }
        ]
      },
      "error": null
    }
  }
}
```

***

### Errors

If a cancellation request has a status `CANCEL_FAILED` the payload would look like below:

```json Response
{
  "data": {
    "cancelOrder": {
      "result": {
        "items": [
          {
            "amazonOrderId": "111-9474033-3741041",
            "status": "CANCEL_FAILED",
            "failReason": "Error attempting to request cancellation"
          }
        ]
      },
      "error": null
    }
  }
}
```

The error field will display errors not related to actual status of a cancellation request.

```json Response
{
  "data": {
    "cancelOrder": {
      "result": [],
      "error": {
        "message": "There was a problem cancelling this order. Contact Rye to cancel the order manually.",
        "code": "REQUEST_MANUAL_CANCELLATION"
      },
    }
  }
}
```


---

*Powered by [holocron.so](https://holocron.so)*
