---
title: "Order refused — Anis Developers"
description: "The purchase conflicts with the current state of the Anis business account, and it was refused. It carries the code `purchase_not_allowed`."
url: https://developers.anis.ly/errors/order-refused/
language: en
---

> Every page of this documentation: https://developers.anis.ly/llms.txt

[Error codes](https://developers.anis.ly/errors.md) · Orders

# Order refused

- **Code:** `purchase_not_allowed`
- **Status:** 409
- **If this was an order:** This request bought nothing
- **Send it again unchanged?** No — change something first
- **.NET SDK:** `AuthorizationException`

## What it means

The purchase conflicts with the current state of the Anis business account, and it was refused. It carries the code `purchase_not_allowed`.

## What to do

- Place a new order with a new operation id only after the account’s state has changed.

## Where you can meet it

- POST [Place an order](https://developers.anis.ly/reference/create-order.md) `/v1/wallets/{walletId}/orders`

## Example

The body of the refusal. Its `type` is the address of this page.

```
{
  "type": "https://developers.anis.ly/errors/order-refused",
  "title": "Order refused",
  "status": 409,
  "code": "purchase_not_allowed",
  "requestId": "01J9R2K8T4V6XQ0M3B7C5D9E1F"
}
```
