What is a Subscription?
A subscription in Revolv3 is a recurring billing arrangement where customers are automatically charged at regular intervals (weekly, monthly, yearly, etc.). Instead of asking customers to pay each time, you set it up once and Revolv3 handles all future charges automatically. Common use cases:- SaaS products: Monthly software subscriptions (like $29.99/month)
- Membership services: Gym memberships, streaming services, clubs
- Recurring services: Monthly box subscriptions, maintenance plans
- Installment plans: “Buy now, pay later” with multiple payments
- Predictable revenue: Customers pay automatically, reducing churn
- Better customer experience: No need to re-enter payment details
- Automated billing: Revolv3 handles retries if payments fail
- Flexible plans: Support trials, different billing cycles, multiple plans
How Recurring Billing Works
Here’s the flow:- Customer signs up: You create a subscription with their payment method
- First charge: Revolv3 charges them immediately (or after a trial)
- Automatic charges: On each billing date, Revolv3 automatically charges the customer
- If payment fails: Revolv3 retries based on your settings (called “recycling”)
- If all retries fail: Subscription status changes and you can notify the customer
- Billing cycle: How often you charge (weekly, monthly, etc.)
- Billing plan: What you charge (amount, when it starts, how many cycles)
- Trial period: Free period before billing starts
- Payment method: The card or bank account that gets charged
Creating a Subscription
Let’s walk through creating a subscription step by step.API Endpoint
Sample Subscription Request
Here’s a complete example for a monthly subscription service:Understanding the Request Fields
Payment Methods
Tip: If you already have a stored payment method (from a previous transaction), you can useExistingPaymentMethodwith apaymentMethodIdinstead of providing full card details.
Customer Information
Subscription Configuration
intervalCount: Number of intervals (e.g.,1= every 1 week)intervalType:"Days","Weeks","Months", or"Years"| |SubscriptionStatusType| Initial status:"current"= Active subscription"canceled"= Cancelled (won’t bill)"recycle"= Payment failed, will retry | |SubscriptionCancelType| How to handle cancellation:"immediate"= Cancel right away, stop billing immediately"endOfCycle"= Finish current billing period, then cancel | |StartDate| When the subscription starts (ISO 8601 format). First charge happens on this date (or after trial). | |TrialDuration| Number of days of free trial before billing starts.0= no trial, charge immediately. |
Billing Plans
-1= Unlimited (charge forever)12= Charge 12 times, then stop | |ValueType| Type of charge:"Standard"= Fixed amount"Percentage"= Percentage of something"Fixed"= Fixed fee | |StartCycleDelay| How many cycles to wait before this plan starts.0= start immediately. Useful for setup fees. |
Advanced Options
Subscription Response
When you successfully create a subscription, Revolv3 returns details about the subscription and the first payment:Understanding the Response
Important: Store thesubscriptionIdandnextBillDatein your database. You’ll need the subscription ID to manage the subscription, and the next bill date to show customers when they’ll be charged next.
Real-World Examples
Example 1: Simple Monthly Subscription
Scenario: $29.99/month SaaS product, no trial, charge immediately.Example 2: Subscription with Free Trial
Scenario: 14-day free trial, then $9.99/month.Example 3: Setup Fee + Monthly Fee
Scenario: $50 setup fee (one-time) + $19.99/month.Creating a Customer First (Optional)
You can create a customer record separately before creating a subscription. This is useful if:- You want to manage customers independently
- A customer might have multiple subscriptions
- You’re building a customer management system
API Endpoint
Sample Request
Sample Response
Using Customer ID in Subscription
Once you have acustomerId, use it in the subscription request:
How Automatic Billing Works
Once a subscription is created, Revolv3 handles everything automatically:- On the billing date: Revolv3 automatically charges the customer’s payment method
- If payment succeeds: Customer is charged, subscription continues,
nextBillDateis updated - If payment fails:
- Status changes to
"recycle" - Revolv3 retries based on your merchant settings (typically after a few days)
- If retry succeeds: Status back to
"current" - If all retries fail: Status changes to
"canceled"or"noncollectable"
- Status changes to
Best Practices
- Store subscription IDs: You’ll need them to manage subscriptions (cancel, update, check status)
- Set up webhooks: Get notified when payments succeed, fail, or subscriptions are cancelled
- Handle payment failures: Have a plan for when automatic charges fail (notify customer, pause service, etc.)
- Use trials wisely: Free trials increase sign-ups but require good onboarding
- Set customer expectations: Tell them when they’ll be charged and how much
- Monitor nextBillDate: Keep this updated in your system so customers know when they’ll be charged
- Support multiple payment methods: Allow customers to add backup payment methods in case primary fails
Common Questions
Q: Can I change the billing amount after creating a subscription? A: Yes, you can update billing plans via the API. Changes take effect on the next billing cycle. Q: What happens if a payment fails? A: Revolv3 automatically retries based on your merchant settings. If all retries fail, the subscription status changes and you can notify the customer. Q: Can I pause a subscription? A: You can cancel it and create a new one later, or update the status. There’s no built-in “pause” but you can work around it. Q: How do I cancel a subscription? A: Use the cancel subscription endpoint. You can choose immediate cancellation or end-of-cycle. Q: Can I charge different amounts each month? A: Yes, you can update the billing plan amount, but it’s easier to use multiple billing plans or update before each cycle.Summary
Next Steps
- Canceling Subscriptions — Learn how to cancel or pause subscriptions
- Billing Plans — Understand billing plan options in detail
- Payment Methods — Learn about storing payment methods for subscriptions
- Webhooks — Set up notifications for subscription events

