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

# Cancel your subscription

> Cancel from Settings → Billing via the Stripe portal, and what happens to access until period end.

export const Youtube = ({id, title = "YouTube video"}) => {
  const [playing, setPlaying] = useState(false);
  const poster = `https://i.ytimg.com/vi/${id}/hqdefault.jpg`;
  if (playing) {
    return <div className="relative my-6 aspect-video overflow-hidden rounded-xl border bg-gray-900">
        <iframe title={title} src={`https://www.youtube-nocookie.com/embed/${id}?autoplay=1&rel=0`} allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen className="absolute inset-0 h-full w-full" />
      </div>;
  }
  return <div className="relative my-6 aspect-video overflow-hidden rounded-xl border bg-gray-900">
      <button type="button" onClick={() => setPlaying(true)} className="group absolute inset-0 flex w-full items-center justify-center" aria-label={`Play ${title}`}>
        <img src={poster} alt="" className="absolute inset-0 h-full w-full object-cover" />
        <span className="relative z-10 flex h-14 w-14 items-center justify-center rounded-full bg-black/70 text-white shadow-lg transition group-hover:scale-105 group-hover:bg-black/85">
          <svg viewBox="0 0 24 24" className="ml-0.5 h-6 w-6 fill-current" aria-hidden>
            <path d="M8 5v14l11-7z" />
          </svg>
        </span>
      </button>
      <a href={`https://www.youtube.com/watch?v=${id}`} target="_blank" rel="noreferrer" className="sr-only">
        Watch on YouTube
      </a>
    </div>;
};

You can cancel anytime through Stripe from Inboxapp billing settings.

<Youtube id="Mz5BUdoagYE" />

1. Log in to **Inboxapp**.
2. Go to **Settings → Billing**.
3. Click **Open Billing** to open the Stripe billing portal.
4. In **Subscription**, click **Cancel plan**.
5. Confirm the cancellation.

Your plan stays active until the end of the current billing period. You are not charged again after that.

## Related

* [What happens after you cancel](/help/billing/what-happens-after-you-cancel)
* [Plans and credits](/help/billing/billing-plans-and-credits)
* [Where to see your invoices](/help/billing/where-can-i-see-my-invoices)

Still stuck? Contact support from the app.
