> ## Documentation Index
> Fetch the complete documentation index at: https://memberful.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# How we handle failed payments

> See how Memberful handles failed payments and expired cards, including the retry schedule, member notifications, and what happens when a subscription lapses.

export const RelatedDocs = ({link1, link2, link3, link4, link5, link6, link7, link8, link9, link10, className = ""}) => {
  const links = [link1, link2, link3, link4, link5, link6, link7, link8, link9, link10].filter(Boolean);
  if (!links.length) return null;
  return <section className={`related-docs border dark:border-gray-700 rounded-2xl px-6 py-4 mt-6 ${className}`}>
      <p className="mb-2 font-medium">
        <strong>Related help docs:</strong>
      </p>
      <ul className="space-y-1 mb-1 mt-1">
        {links.map((link, index) => <li key={index}>
            <a href={link.url}>{link.label}</a>
          </li>)}
      </ul>
    </section>;
};

Your members' payments might fail for a variety of reasons: A member's card might not have enough funds for the transaction, the card could have expired, or the transaction might be declined by the bank for some other reason.

In this help article, you'll learn how we handle failed payments and members with expired credit cards.

<Info>
  Powerful insights and proven strategies can help resolve common challenges such as failed payments. [Check out Operator](https://www.membershipoperator.com) on how to easily and effectively reduce failed payments inside your membership, and unlock the tools you need to operate at your best.
</Info>

## How we handle failed payments

After the first payment failure, we'll send the member an [email notification](/configuration/emails/email-templates/#review-available-templates) letting them know that their subscription is past due. We'll also prompt them to review and update their payment details.

We'll then retry the payment up to 4 times—always with 12 hours between retries. If we are unable to charge the member after 48 hours, we will deactivate their subscription.

Credit card declines are determined by Stripe. For each transaction, Stripe passes back a simple "Yes" or "No" message to Memberful, but they don't provide us with any additional information.

The Stripe declines do show up in your Stripe dashboard, and sometimes they show a reason for the decline. Take a look through [*Stripe's Declines and Failed Payments documentation*](https://stripe.com/docs/declines/codes) for more information.

## How we handle expired credit cards

If we detect a credit card expiration date before the member's next renewal date, we'll send them an [email reminder](/configuration/emails/email-templates/#review-available-templates). On the renewal date, we'll try to charge the card on file—either the old one or a new one they've added. In most cases, an expired credit card will lead to a failed payment, but some banks do allow charges to be processed on expired cards.

## How to reduce failed payments

### What are merchant category codes?

Merchant category codes (MCCs) classify the goods and services offered by a business. When a Stripe account is opened, this code is often (arbitrarily) assigned based on info provided during onboarding, but you should be able to pick a different one afterward.

You must be strategic when classifying your business in Stripe. You want to choose a category that's the least-associated with fraudulent activity while also aligning with your business.

The right thinking in terms of what code to use involves ensuring that the service being provided is "professional and essential" in its nature. Fortunately, most membership products align well with this thinking.

**Therefore, CATEGORIES TO AVOID AT ALL COSTS are:**

* Entertainment and recreation
* Travel and lodging
* Transportation
* Food and drink
* Digital products, if possible. (If this classification cannot be avoided, ensure you provide the specific type of digital product being provided.)
* Clothing and accessories
* Regulated and age-restricted products

**Categories TO USE (these are associated with lower instances of fraud):**

* Professional services
* Membership organizations
* Education

Be sure to select the proper subcategory for the categories above.

### How do I review and change my MCC?

1. Log in to your Stripe account, and go to *Settings → Business Settings → Business Details.*
2. Edit your business details along with the product description. Ensure the product description aligns with your chosen industry and clearly states that the charges are recurring (if applicable).
3. Save and exit.

You should allow for a minimum of 30 days before seeing a noticeable shift in the rate of failed payments.

<RelatedDocs
  link1={{
url: "/overview/getting-started/payment-processing/",
label: "How do I process payments with Memberful?",
}}
  link2={{
url: "/configuration/localization/choose-your-currency/",
label: "Choose your currency.",
}}
  link3={{
url: "/account-management/account-settings/switch-your-stripe-account/",
label: "How do I switch Stripe accounts?",
}}
/>
