#Rich1610
1 messages · Page 1 of 1 (latest)
hi! well 'paid trials' are not really a native thing in Stripe. Mostly what you would do is have two Price objects, one for 2.99 with interval:week and interval_count:2, and one for 12.99 with whatever interval that needs.
and then you create the subscription using the first, and update the subscription to change to the second one later
the reasonable way to do it is to use Checkout to create the Subscription to the cheaper plan, and then when handling the outcome of Checkout via your webhook handler, create a Schedule to schedule the change to the expensive plan . https://stripe.com/docs/billing/subscriptions/subscription-schedules
Allright thank you...
Hey, taking over here. Let me know if there's any follow-up Qs I can answer!