#peter.chat_help
1 messages · Page 1 of 1 (latest)
Hi Alex,
I have readvise my question.
I am trying to setup a future payment for a subscription product.
scenario:
Client is starting with the subscription item from a gift card for a year and then client have an options to continue the subscription anytime between the gift card subscription period and put in their credit card information and charge it when the gift card subscription finish.
I have tried with "Set up future payments" https://stripe.com/docs/payments/save-and-reuse#web-submit-payment-details, however only able to setup it up with one time payment instead of joining a subscription item.
that particular guide you're referring to is more for one time payments. I think you would want to take a look at this guide instead : https://stripe.com/docs/billing/subscriptions/build-subscriptions
Hi @bold owl I'm taking over this thread, let me know if you have any questions
Can we use start_date in checkout sessions to delay start date?
we are using this api for immediate start subscription, are we able to add “start_date” to delay start for future subscription https://stripe.com/docs/api/checkout/sessions/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
mode: subscription
Hi @bold owl , you can't specify a start_date when creating a subscription. the start_date is set by Stripe when the subscription is created.
My understanding is that you want to schedule the subscription so that it can be automatically started in a later date. For that I'd suggest you to take a look at the Subscription Schedules API https://stripe.com/docs/billing/subscriptions/subscription-schedules
we are trying the https://stripe.com/docs/billing/subscriptions/subscription-schedules and get an error message
All phase items prices must be recurring.
Did you pass in a recurring price?
we are confuse about the process.
with this api,https://stripe.com/docs/billing/subscriptions/subscription-schedules. is the user going to receive an invoice to fill in their credit card when subscription start or client will be able to save credit card detail in a checkout session?
I'd suggest you to use a setup mode checkout session to collect the customer's payment method first, and then use the collected payment method for the scheduled subscription.
Thank you Jack.....
We will be trying it later.
No problem