Withdrawal count limit exceeded — Issuer rate-limit on withdrawals/charges per period.
Usually only on debit cards with daily transaction limits.
| Retry strategy | Retry after a delay |
|---|---|
| Customer-facing action | No customer action needed |
| Recovery rate (retry only) | ~30% |
| Recovery rate (with customer flow) | ~60% |
Wait 24–48h before retrying. Limit usually resets daily.
The recommended Stripe Customer Portal session for the recovery flow:
session = stripe.billing_portal.Session.create(
customer=customer_id,
return_url="https://yourapp.com/billing/thanks",
flow_data={"type": "payment_method_update"},
)
update_link = session.url
withdrawal_count_limit_exceeded is one of dozens of decline codes Stripe returns; recovery rates vary by code by 5x or more. The recovery-rate reference covers the full set; the card-update flow article covers the customer-facing side; dunning emails covers how to write the messages.
DunningKit's open-source CLI parses your Stripe failed-charges CSV and gives you the breakdown by code, with recoverable-revenue estimates. pip install dunningkit.