# Quantity minimum must be equal to or lower than 999999999

Occurs when your supplied value for quantity.minimum is greater than 999999999.

---

## Example

```json
{
  "error": {
    "type": "request_error",
    "code": "price_quantity_minimum_greater_than_maximum",
    "detail": "quantity.minimum must be equal to or lower than 999999999",
    "documentation_url": "https://developer.paddle.com/errors/prices/price_quantity_minimum_greater_than_maximum"
  },
  "meta": {
    "request_id": "00000000-0000-0000-0000-000000000000"
  }
}
```

## Details

| Attribute | Value |
| --- | --- |
| Status code | 400 |
| Error code | `price_quantity_minimum_greater_than_maximum` |
| Error message | quantity.minimum must be equal to or lower than 999999999 |

## Common causes

- quantity.minimum is set but greater than 999999999

## Common solutions

- Update quantity.minimum to be equal to or lower than 999999999.
