> ## 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.

# Switch your Stripe account

> Looking to switch Stripe accounts? Whether you're updating your business or transferring ownership, it's a straightforward process.

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>;
};

export const ContactSupport = ({label = "Contact us to get set up →", fallbackEmail = "info@memberful.com", className = ""}) => {
  const handleClick = e => {
    e.preventDefault();
    if (typeof window !== 'undefined' && window.Intercom) {
      try {
        window.Intercom('showNewMessage');
        return;
      } catch (error) {
        console.warn('Intercom failed to open:', error);
      }
    }
    window.location.href = `mailto:${fallbackEmail}`;
  };
  return <a href={`mailto:${fallbackEmail}`} onClick={handleClick} className={className}>
      {label}
    </a>;
};

In this help article, we'll explore how to switch your existing Stripe account to another and seamlessly accept member payments.

To use a new Stripe account with Memberful:

1. Use Stripe's [self-serve feature](https://stripe.com/docs/account/data-migrations/pan-copy-self-serve) to migrate your Memberful members to your new Stripe account.
2. In your Stripe dashboard, [deauthorize the Memberful app](https://dashboard.stripe.com/account/applications). Check out [this article](https://support.stripe.com/questions/disconnect-your-stripe-account-from-a-connected-third-party-platform) if you need any further help with that step.
3. Reconnect to your new account via *Settings → Stripe* in your Memberful dashboard.
4. <ContactSupport label="Contact our support team" /> so we can re-sync your members. **If you miss this step, we will not be able to charge your members when their renewals come due.**

<RelatedDocs
  link1={{
url: "/overview/getting-started/payment-processing/",
label: "Learn more about how Memberful securely processes payments.",
}}
  link2={{
url: "/account-management/account-settings/update-your-site-and-account-settings/",
label: "Manage your account settings.",
}}
  link3={{
url: "/member-management/subscription-management/modify-a-member-s-subscription/",
label:
  "Learn how admins can modify a member's subscription from the Memberful dashboard.",
}}
/>
