# Recurring(継続支払い) でPeriodicAmountExceededエラーが発生します。

ユーザー保護の観点から、１つのChargePermissionから生成できるChargeの金額合計には毎月の上限(100,000円)があります。
この上限を超えて生成しようとした場合、PeriodicAmountExceededエラーが発生します。
翌月1日になった際に残りの取引可能金額がリセットされて、Chargeを生成して売上請求することが可能になります。

 **エラーメッセージサンプル** 

```
{
    "status": 400,
    "response": {
        "reasonCode": "PeriodicAmountExceeded",
        "message": "You've exceeded the monthly limit for the Charge Permission and must wait until the next month to charge this buyer."
    }
}
```

## 参考
[継続支払いの毎月の請求金額制限](https://developer.amazon.com/ja/docs/amazon-pay-checkout/monthly-recurring-charge-limits.html)
[エラーコード](https://developer.amazon.com/ja/docs/amazon-pay-api-v2/charge.html#%E3%82%A8%E3%83%A9%E3%83%BC%E3%82%B3%E3%83%BC%E3%83%89)
