Billing in 1Club is built on three distinct concepts that are deliberately kept separate. Once you have the model in your head, every screen in the Billing menu lines up.Documentation Index
Fetch the complete documentation index at: https://docs.1club.ai/llms.txt
Use this file to discover all available pages before exploring further.
- A transaction is what someone owes you. One row per obligation (a booking fee, a membership charge, a signup fee). Has a
paymentStatusofpending,paid,overdue,void,partially_paid,refunded, orcancelled. - A payment is how money was collected. One row per settlement event, linked to one or more transactions via a join table.
- An invoice is a document that groups outstanding transactions for a contact, with a number and a due date. Invoices don’t move money on their own.
The Billing menu
| Page | What it lists | When to use it |
|---|---|---|
| Plans | Membership and pass templates | Set up pricing tiers and recurrence rules. |
| Transactions | Individual obligations | Audit what’s owed, void mistakes, charge or record payment in bulk. |
| Invoices | Receivable documents | Issue formal invoices, send payment links, download PDFs. |
| Bill runs | Batch invoice generations | Roll up a month of pending transactions into invoices in one go. |
| Payments | Settlement records | See what’s been collected, including who recorded it. |
How a charge usually flows
The typical flow for a paid activity is:- A booking, membership, or signup fee is created. 1Club writes a transaction with
paymentStatus = pending(orpaidif the amount is zero). - Either the system or an admin collects payment. That can happen up front (Stripe Payment Element in the member portal, or an admin recording a manual payment), at check-in if the booking policy says so, or later from an invoice.
- When the payment succeeds, 1Club creates a payment row, links it to the transaction(s) via
payment_transactions, and flips the transaction’s status topaid. Pending bookings tied to that transaction are confirmed.
- You manually invoice a transaction from its details page.
- You run a bill run, which sweeps every pending non-void transaction for a period and groups them into invoices.
- A scheduled bill run fires on a cron (configured under Settings > Billing > Automated bill runs).
Recurring memberships
For recurring plans, an hourly job (recurring-transactions) does three things:
- Creates the next
membership_recurrencetransaction when a billing period rolls over. - For memberships flagged payment required up front, it attempts to charge the contact’s default Stripe payment method when the recurrence becomes due. If no default method is on file or the charge fails, the transaction stays
pending. - Marks any
pendingtransaction whose due date is in the past asoverdue.
What lives where
- Transaction obligations: Billing > Transactions.
- Settlement events and the Created by column: Billing > Payments.
- Invoice documents, PDFs, and payment links: Billing > Invoices.
- Batch invoice generation: Billing > Bill runs.
- Plan templates: Billing > Plans.
- Stripe connection, manual payment methods, tax rates, revenue accounts: Settings > Billing.
Related
- Plans
- Transactions
- Invoices
- Bill runs
- Payments
- Payment methods
- Export - CSV and QuickBooks bundle for accounting handoff.