# Transaction recurring balance is less than charge limit

For a transaction with recurring prices to be ready for payment, the recurring chargeable amount must be greater than 70 cent USD

---

## Example

```json
{
  "error": {
    "type": "request_error",
    "code": "transaction_recurring_balance_less_than_charge_limit",
    "detail": "Transaction recurring balance will be less than what we can charge. Recurring balance: 10, Minimum payment amount: 70, Currency code: USD",
    "documentation_url": "https://developer.paddle.com/errors/transactions/transaction_recurring_balance_less_than_charge_limit"
  },
  "meta": {
    "request_id": "00000000-0000-0000-0000-000000000000"
  }
}
```

## Details

| Attribute | Value |
| --- | --- |
| Status code | 400 |
| Error code | `transaction_recurring_balance_less_than_charge_limit` |
| Error message | Transaction recurring balance will be less than what we can charge. Recurring balance: %d, Minimum payment amount: %d, Currency code: %s |

## Common causes

- Sum of the recurring products total is less than 70 cent USD (prices with billing_cycles)
- A combination of one-off and recurring prices are resulting in the initial charge to be greater than the minimum chargeable amount. However the recurring charge is less than this limit.

## Common solutions

- For a transaction to be ready it must have both an initial and recurring chargeable amount greater than 70 cent USD
