---
title: "Quantity unavailable — Anis Developers"
description: "The card cannot be sold in this quantity: it is sold out, there is not enough stock, or the quantity is outside the card’s own minimum or maximum."
url: https://developers.anis.ly/errors/quantity-unavailable/
language: en
---

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

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

# Quantity unavailable

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

## What it means

The card cannot be sold in this quantity: it is sold out, there is not enough stock, or the quantity is outside the card’s own minimum or maximum.

## What to do

- Read the catalogue again and place a new order with an available quantity and a new operation id.

## 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/quantity-unavailable",
  "title": "Quantity unavailable",
  "status": 409,
  "code": "quantity_unavailable",
  "requestId": "01J9R2K8T4V6XQ0M3B7C5D9E1F"
}
```
