A bill run takes every billable transaction in a period and groups it into invoices. That’s the whole job. Bill runs do not charge anybody, send anything, or retry failed payments - they generate invoice documents and stop. If you’ve been told “the bill run will collect money,” that’s wrong. Collection happens separately, through the Payments flow or by sending an invoice payment link.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.
What counts as billable
A transaction is included in a bill run when all of the following are true:- It belongs to the organization running the bill run.
- Its date falls inside the period you select.
isInvoicedisfalse(it hasn’t been swept into an invoice yet).- Its
paymentStatusis notvoid. - Its
transactionTypeis one of the allowed types (booking, membership, signup fee, product sale, external program entry).
One invoice per contact, or one for everyone
Your organization’s billing preference (set under Settings > Billing) decides how the bill run groups transactions:separate(default): one invoice per contact, containing all of that contact’s transactions in the period.single: one combined invoice covering every billable transaction in the period, addressed to the first contact in the set.
separate is what you want. single is for B2B billing where a corporate account is paying for many people in one document.
Every created invoice gets:
- A generated invoice number following your invoice template.
- An invoice date set to the moment the run executed (in the organization’s timezone).
- A due date 30 days after the invoice date.
- Line items pointing back to the original transactions.
- A status derived from those transactions (
paid,partially_paid,pending, oroverduebased on the due date).
isInvoiced = true so it won’t be picked up again.
Running a bill run manually
- Go to Billing > Bill runs and click the Bill run action.
- Give the run a name (defaults to
<month> <year> Bill Run). - Pick a Period start and Period end. Defaults to the current month.
- Optionally narrow the set with filters: transaction types, specific contacts, specific plans, an amount range.
- Click Preview to see exactly which transactions will be invoiced. The preview shows transaction count, contact count, total amount, and a per-type breakdown.
- Click Confirm to generate the invoices.
Scheduled bill runs
To run on a recurring schedule, use Settings > Billing > Automated bill runs. Each schedule has:- A name and description.
- A frequency (daily, weekly, monthly) and time of day that compile to a cron expression.
- Optional filters identical to the manual form.
executeBillRun service the manual flow uses, with a default period (current month) and the saved filters. You can also trigger a saved schedule on demand from the Run now action; that confirmation dialog spells out which contacts and transaction types will be hit before it runs.
A scheduled run executes silently in the background; it does not email members or notify admins on completion. To see results, open the Bill runs list (the new run will appear there with its created invoices).
Deleting a bill run
Deleting a bill run from the details page clears thebillRunId on every invoice in it, then removes the bill run record. The invoices and their line items are kept. The original transactions stay marked isInvoiced = true. If you want those transactions to become billable again you have to delete the invoices too.
Known limits
- No automatic retry. If you mean to run weekly and miss a week, schedule a one-off catch-up run.
- No row-level dry run beyond the preview. Once you click Confirm, the invoices are written.
- The
autoChargefield on the create-bill-run API doesn’t trigger any charge. Treat bill runs as invoice generation only.