Skip to main content

What are Billing Plans?

A billing plan defines how much to charge and when to charge it within a subscription. Think of it as a “pricing rule” that tells Revolv3:
  • How much to charge
  • How many times to charge it
  • When to start charging it
  • What type of charge it is (regular price, discount, etc.)
Why use billing plans:
  • Flexible pricing: Different plans for different tiers or features
  • Complex subscriptions: Setup fees, recurring fees, discounts all in one subscription
  • Trial periods: Free periods before billing starts
  • Promotional pricing: Discounts that expire after a certain number of cycles

Understanding Billing Plans

Basic Concept

A subscription can have multiple billing plans that work together: Example: A subscription with setup fee + monthly fee
  • Plan 1: $50 setup fee (charged once, immediately)
  • Plan 2: $29.99 monthly fee (charged every month, unlimited)
Both plans are part of the same subscription and work together.

Billing Plan Fields

Value Types Explained

The valueType field tells Revolv3 how to interpret the value:

Cycle Count Explained

The cycleCount field controls how many times a plan charges:

Start Cycle Delay Explained

The startCycleDelay field controls when a plan starts charging:

Real-World Examples

Example 1: Simple Monthly Subscription

Scenario: $29.99/month, no setup fee, unlimited
Result: Customer is charged $29.99 every month, forever (until canceled).

Example 2: Setup Fee + Monthly Fee

Scenario: $50 setup fee (one-time) + $19.99/month
Result: Customer is charged $50 + $19.99 immediately, then $19.99/month going forward.

Example 3: Free Trial Then Monthly

Scenario: 14 days free, then $9.99/month
Result: Customer gets 14 days free, then charged $9.99/month starting on day 15.

Example 4: Promotional Pricing

Scenario: First 3 months at $9.99, then $29.99/month
Result:
  • Months 1-3: $9.99/month
  • Month 4+: $29.99/month

Example 5: Subscription with Discount

Scenario: $29.99/month with $5 discount for first 6 months
Result: Customer pays $24.99/month ($29.99 - $5.00) for first 6 months, then $29.99/month after.

Understanding Value and ValueType

Standard Charges

When valueType is Standard, value is the amount to charge:
Charges $29.99.

Discounts

When valueType is Discount, value is subtracted from other charges:
Subtracts $5.00 from the total.

Percentage Discounts

When valueType is DiscountPercentage, value is a percentage (0-100):
Applies a 10% discount. Important: For percentage discounts, value is the percentage number (10 = 10%), not a decimal (0.10).

Best Practices

  1. Use descriptive names: Make plan names clear for reporting and reconciliation
  2. Validate amounts: Check that values are correct before sending (>= 0, reasonable amounts)
  3. Test combinations: Test how multiple plans work together
  4. Keep it simple: Don’t over-complicate with too many plans
  5. Document your logic: Keep notes on how your billing plans work together

Common Questions

Q: Can I have multiple billing plans in one subscription? A: Yes, you can have multiple plans. They work together (e.g., setup fee + monthly fee). Q: What’s the difference between Discount and FinalDiscount? A: Discount is applied to specific line items, FinalDiscount is applied to the total after all other charges. Q: How do I create a free trial? A: Use TrialDuration at the subscription level, or create a plan with value: 0 and cycleCount: 1. Q: Can I change billing plans after creating a subscription? A: You can update subscriptions, but check the API documentation for how plan changes are handled. Q: What if cycleCount is -1? A: -1 means unlimited—the plan will charge forever (until subscription is canceled).

Next Steps