Namazu Cloud bills through Stripe. Billing lives at the organization level: an organization has a Stripe customer record and a payment method, and paying for instances and add-ons draws on it. This page covers the customer side of that setup: what is needed before you can use the platform, how to add a payment method, and what happens behind the scenes once you do.
Before You Start #
You need two things in place before an organization can spend money:
- An account and an organization. Sign up, then create an organization; the account that creates it becomes its owner. See Namazu Cloud Account and Namazu Cloud Organizations.
- A payment method on file. Namazu Cloud attempts to set up billing for a new organization automatically when it is created. If that did not complete, the billing page finishes it: a Stripe customer record is created for the organization, then you attach a card.
The Billing-Readiness Gate #
Until a payment method is on file, Namazu Cloud blocks the paid actions: creating an instance and starting an add-on purchase both refuse to proceed. This is deliberate. Usage is metered as your instance runs, so the platform requires a way to charge before it provisions anything you will be billed for.
The check is three layers deep, but you only ever see the outcome:
- If the organization has no Stripe customer yet, the action stops with a prompt to set up billing.
- If the organization is marked billing-ready, the action proceeds.
- Otherwise Namazu Cloud checks Stripe live for a payment method, and treats a card on file as billing-ready even if the faster flag has not caught up yet.
The billing page reflects this as a billing status: billing ready or not, whether a payment method exists, and the billing method in use. Owner-only for the view, as billing is an ownership responsibility.
Adding a Payment Method #
Add a payment method by setting up billing on the organization page. The flow uses Stripe’s SetupIntent, which lets your browser hand Stripe a card through a Stripe-provided form without the card details ever passing through Namazu Cloud, and without charging anything yet. Nothing is billed when you add the card; billing only starts when usage accrues or a subscription renews.
What to Expect Afterward #
Once Stripe confirms the payment method, a webhook tells Namazu Cloud the organization is billing-ready, and the flag flips. You can see the moment it does on the organization’s billing status. Two independent Stripe events set the flag, so even an unusual path still converges.
Namazu Cloud also self-heals. If the notification is ever missed, late, or dropped, the next billing-readiness check asks Stripe directly, sees the card, and repairs the flag itself. The practical effect is that the gate does not lock out an organization that has genuinely added a card.
Purchasing Add-ons #
Add-on purchases go through Stripe-hosted Checkout. Choosing an add-on opens a Stripe payment page for that add-on; depending on the add-on type it collects a one-time payment or starts a subscription, then returns you to the portal. A payment method must already be on file, because the purchase is charged to the organization’s Stripe customer. See Namazu Cloud Add-ons.
Managing Payments #
The billing page opens the Stripe Customer Portal for the organization: a Stripe-hosted page where the owner can manage payment methods and, for add-on subscriptions, what Stripe lets a customer manage from there. Optionally Namazu Cloud configures a direct link to the banner-advertised payment page in the portal, and whether that link shows at all is a deployment setting.
Note
Organizations run against a Stripe environment, either sandbox or production. Metered usage and add-on purchases are reported against the environment the organization is configured for. Which environment an organization is on is set by Namazu Cloud, and the products and prices an organization buys from are matched to it.
Operator Side #
This page covers the customer side of the Stripe setup. For the operator side, the underlying Stripe integration is documented separately:
- Stripe. The Stripe Element and its Service surface
- Configuring the Stripe Element. API keys, webhook signing, and deployment attributes
- Stripe Webhooks and the Typed Event Bus. The webhook events the billing-readiness flag and add-on reconciliation depend on
- Stripe REST API Reference. The raw REST surface of the Stripe Element
Related Pages #
- Namazu Cloud Overview
- Namazu Cloud Organizations. Billing is owned at the organization level
- Namazu Cloud Instances. The gate that applies before you can create one
- Namazu Cloud Add-ons. Purchases billed through the same Stripe setup

