# Recurring(継続支払い) のChargePermissionには取引可能金額合計に上限がありますが、どの期間の合計になりますか？

当月の間における合計になります。（Recurring(継続支払い) では１つのChargePermissionに対して当月の間に100,000円まで取引可能です）

現時点の残りの取引可能金額は[GetChargePermission API](https://developer.amazon.com/ja/docs/amazon-pay-api-v2/charge-permission.html#get-charge-permission)のレスポンス情報に含まれるlimits.amountBalance.amountで確認ができます。
 
 **取引可能金額100,000円のうち、既に10,000円請求している状態のレスポンス情報** 

```
{
    "status": 200,
    "response": {
        "chargePermissionId": "C03-3398114-4303294",
        "chargePermissionReferenceId": null,
…
        "limits": {
            "amountLimit": {
                "amount": "100000",
                "currencyCode": "JPY"
            },
            "amountBalance": {
                "amount": "90000",
                "currencyCode": "JPY"
            }
        },
…
    }
}
```

※翌月1日になった際に残りの取引可能金額がリセットされてlimits.amountBalance.amountは100000となります。


 **取引可能金額を超えてAPIを呼び出した時のエラーメッセージサンプル** 

```
{
    "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)