Home > Software design >  Free trail for a specific subscription item while subscription is not on trial in stripe
Free trail for a specific subscription item while subscription is not on trial in stripe

Time:11-26

I have one active subscription. Now I want to add new subscription item to that subscription but that on free trial while other items on that subscription are active.

How do I achieve this thing.

I read the documentation where we can set trail_end for subscription but there is no field for subscription item.

Any help must be appreciated.

In stripe panel in that plan I have added trial period but than also in invoice it deduct the price.

CodePudding user response:

In a same Subscription, you can't have a single Subscription item with trial, and others Subscription items that don't. Trial is for the whole Subscription itself.

CodePudding user response:

If you go to the stipe panel read the legacy in add free trail.

setting a default trial period per price is no longer recommended and is incompatible with checkout and quotes. free trial can be set per subscription or quote instead

Also you can read this. https://www.reddit.com/r/stripe/comments/p4ruk9/no_free_trial_options_for_stripe_checkout_js/

  • Related