Subscription renewal
Subscriptions renew automatically in Paddle unless canceled or paused. Paddle collects using a saved payment method, or sends an invoice that customers must pay.
Renewals are the defining feature of subscription business models. Subscription renewals happens at the end of a billing period when a customer continues their subscription and is billed for the next billing period.
A renewal is successful where payment is collected successfully. If unsuccessful, a subscription becomes past due.
How it works
At the end of the current billing period, Paddle automatically creates a transaction for the next billing period. This transaction is for any recurring items on the subscription, along with any one-time charges or subscription changes that have been billed on the next billing period.
Transactions are automatically created for subscription renewals, even for manually-collected subscriptions:
- For automatically-collected subscriptions, Paddle creates a transaction and collects for it automatically using the payment method on file. It becomes past due if a collection attempt fails.
- For manually-collected subscriptions, Paddle creates and issues an invoice. Customers must pay it manually before the payment terms elapse, otherwise it becomes past due.
Subscriptions that are scheduled to pause or cancel aren't renewed.
Events
This guide is overview of events that typically occur. Depending on the customer journey and how you build your workflows, not all events listed may occur, or additional events may occur.
We can't guarantee the order of delivery for webhooks. Store and check the
occurred_atdate against a webhook before making changes.
Subscription renews
subscription.updatedThe subscription and its items are updated with new previously_billed_atandnext_billed_atdates, and thecurrent_billing_periodis updated.transaction.createdPaddle creates a transaction for recurring items on the subscription, as well as any prorated or one-time charges that were set to be billed on the next billing period. Its status is billed, meaning no changes can be made to the transaction. Its origin issubscription_recurring.transaction.billedOccurs because the transaction status changes to billed.Payment collected successfully
transaction.updatedThe transaction status changes to paidnow that the customer has paid successfully. The transaction is updated with information about the successful payment.transaction.paidOccurs because the transaction status changes to paid.transaction.updatedAn invoice number is assigned to the transaction. Its status changes to completedas Paddle has finished processing it.transaction.completedOccurs because the transaction status changes to completed.
Emails
For compliance reasons, Paddle sends emails for subscription lifecycle events.
When a subscription renews, Paddle sends:

Receipt
Your receipt from [company]
List of items purchased, along with totals and purchase date. Includes a PDF invoice for their records.
Recommended workflow
Listen for events
We recommend that you listen for:
subscription.updatedGet notified when a subscription is updated. transaction.createdGet notified when a transaction is created. Transactions with the originofsubscription_recurringare for renewals.transaction.completedGet notified when a transaction is completed. This means it's fully paid and Paddle has completed processing. Update information in your database
Update the record for a subscription in your database for the renewal based on webhooks received. As well as checking and storing the
occurred_atdate against notifications, you'll typically need to update:Description Field name Reason to store Subscription status subscription.statusUsed to determine if a renewal was successful. Status is past_duewhere automatic collection fails, or where an invoice is unpaid and its payment terms have elapsed.Next billing date subscription.next_billed_atUsed to determine when a subscription renews if active. You may like to store and update other fields if you want to build a more comprehensive billing and subscription management experience. To learn more, see Handle provisioning and fulfillment
Provision
Provision so that a customer has continued access to your app.
Use the
subscription.statusfield to determine whether a subscription should have access to your app. Wherestatusisactiveorpast_due, customers should have full access to your app.