billing.invoice_created
New invoice generated for the creator's MemberPass tier.
project_id is always null for billing events — these describe the
creator's relationship with MemberPass itself, not their subscribers.
When this fires
A new invoice is generated for the creator's MemberPass tier subscription.
Required ability
billing:read — token must carry this at mint time to subscribe an endpoint to this event.
Payload
{
"id": "evt_01HX...",
"type": "billing.invoice_created",
"created_at": "2026-05-18T10:05:00Z",
"api_version": "2026-05-01",
"project_id": null,
"data": {
"creator_id": "cre_01HX...",
"invoice_id": "in_1Nxy..",
"amount": "49.00",
"currency": "USD",
"hosted_invoice_url": "https://invoice.stripe.com/..",
"attempt_count": 0
}
}Field reference
| Field | Type | Notes |
|---|---|---|
id | string ULID | Unique event id, prefixed evt_. Use for idempotent processing. |
type | string | Always billing.invoice_created for this event. |
created_at | ISO 8601 timestamp | Server-side emission time. |
api_version | string | Webhook API contract version. |
project_id | null | Always null — account-level event. |
data.creator_id | string ULID | Creator the invoice is addressed to. |
data.invoice_id | string | Provider invoice id. |
data.amount | string | Invoice amount in major units of currency, formatted as a string. |
data.currency | string | ISO 4217 currency code. |
data.hosted_invoice_url | string | URL to the provider-hosted invoice page. |
data.attempt_count | integer | Number of payment attempts so far. 0 at creation. |
Caveats
- This event is creator-side only. Subscriber invoices, if any, are not represented in
billing.*. - Pairs with
billing.invoice_paidon success andbilling.payment_failedwhen the first attempt fails.
Related events
billing.invoice_paid— successful collection.billing.payment_failed— failed collection attempt.- Billing events overview — back to family overview.
How is this guide?